UNPKG

react-resizable-panels

Version:

React components for resizable panel groups/layouts

4 lines (3 loc) 178 B
export type Direction = "horizontal" | "vertical"; export type ResizeEvent = KeyboardEvent | PointerEvent | MouseEvent; export type ResizeHandler = (event: ResizeEvent) => void;