UNPKG

@ashxjs/split-view

Version:

Simple react split-view component with resizing divider

8 lines (7 loc) 258 B
import { FunctionComponent, ReactNode } from "react"; export type LeftPanelProps = { leftWidth: number | undefined; setLeftWidth: (value: number) => void; children: ReactNode; }; export declare const LeftPanel: FunctionComponent<LeftPanelProps>;