memorium/components/Grid.tsx

13 lines
288 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 (
<div
class="grid gap-4 py-6"
style={{ gridTemplateColumns: "repeat(auto-fit, minmax(200px, 1fr))" }}
>
{children}
</div>
);
};