import { ComponentChildren } from "preact"; export const Grid = ({ children }: { children: ComponentChildren }) => { return (
{children}
); };