10 lines
211 B
TypeScript

import { ComponentChildren } from "preact";
export const Grid = ({ children }: { children: ComponentChildren }) => {
return (
<div class="grid gap-4 py-6 custom-grid">
{children}
</div>
);
};