import { FunctionComponent } from 'react'; import Col from './Col'; import Grid, { GridProps } from './Grid'; import Row from './Row'; interface CompoundGridProps extends FunctionComponent { Col: typeof Col; Row: typeof Row; } const CompoundGrid = Grid as CompoundGridProps; CompoundGrid.Col = Col; CompoundGrid.Row = Row; export default CompoundGrid;