Files
pp-tcms/frontend/app/projects/layout.tsx
2024-02-04 00:12:06 +09:00

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>
);
}