memorium/components/Grid.tsx

10 lines
211 B
TypeScript
Raw Normal View History

2023-08-02 01:58:03 +02:00
import { ComponentChildren } from "preact";
export const Grid = ({ children }: { children: ComponentChildren }) => {
return (
2023-08-02 17:35:10 +02:00
<div class="grid gap-4 py-6 custom-grid">
2023-08-02 01:58:03 +02:00
{children}
</div>
);
};