import { CSSProperties } from 'react'; import classNames from 'classnames'; import { mapChildren } from 'react-basics'; import styles from './Grid.module.css'; export interface GridProps { className?: string; style?: CSSProperties; children?: any; } export function Grid({ className, style, children }: GridProps) { return (