UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

10 lines (9 loc) 314 B
import Panel from './Panel'; import SplitterComp from './Splitter'; export type { SplitterProps } from './interface'; export type { SplitterRef } from './Splitter'; type CompoundedComponent = typeof SplitterComp & { Panel: typeof Panel; }; declare const Splitter: CompoundedComponent; export default Splitter;