12 lines
229 B
TypeScript
12 lines
229 B
TypeScript
export default function ProjectsLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<section className="flex flex-col items-center justify-center gap-4 py-4 md:py-5">
|
|
{children}
|
|
</section>
|
|
);
|
|
}
|