UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

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