Files
matheoguilbert.fr/components/mdx/ProjectsColumns.tsx
T
2026-04-16 11:55:31 +02:00

11 lines
232 B
TypeScript

type props = {
children: React.ReactNode;
};
export function ProjectsColumns({ children }: props) {
return (
<div className="grid gap-6 text-justify text-base font-sans lg:grid-cols-2 lg:space-x-6">
{children}
</div>
);
}