import classNames from 'classnames'; import { mapChildren } from 'react-basics'; import styles from './Grid.module.css'; export function Grid({ className, ...otherProps }) { return
; } export function GridRow(props) { const { columns = 'two', className, children, ...otherProps } = props; return (
{mapChildren(children, child => { return
{child}
; })}
); }