1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
import { FC, ReactNode } from 'react'; export type ColumnProps = { children: ReactNode | ReactNode[]; }; /** * Column component. * * Render the body as a column. */ const Column: FC<ColumnProps> = ({ children }) => { return <div>{children}</div>; }; export default Column;