import { JSX } from 'preact' type Units = 'rem' | '%' | 'px' export function AutoGrid( { columnWidth, children, style }: { columnWidth: `${number}${Units}` children: JSX.Element | JSX.Element[] style?: JSX.CSSProperties }, ) { return (
{children}
) }