import React from 'react' import cc from 'classcat' import { ColumnProps } from '../../layout/column' export type ColumnsProps = Readonly<{ className?: string children: Array> }> /** * A parent component for component. * Each nested inside the parent will share the horizontal space and get an equal * share of the available horizontal space. * * Only are valid children of . */ export const Columns = (props: ColumnsProps) => { const { className, children } = props return
    {children}
}