trackevery-day/app/welcome/layout.tsx
Felix Schulze e1e37ebb51
All checks were successful
Lint / Lint (push) Successful in 32s
SonarQube Scan / SonarQube Trigger (push) Successful in 51s
emerald to green, add example bad habit, container sizes
2024-09-04 08:45:00 +02:00

12 lines
267 B
TypeScript

export default function Layout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<div className="flex h-full w-full bg-green-950 text-neutral-200">
<div className="m-4 md:my-16 md:mx-auto max-w-96">{children}</div>
</div>
);
}