Felix Schulze
8f0cdbaa21
Some checks failed
SonarQube Scan / SonarQube Trigger (push) Failing after 43s
12 lines
288 B
TypeScript
12 lines
288 B
TypeScript
export default function Layout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<div className="flex flex-col h-screen w-screen block bg-emerald-950 text-neutral-300">
|
|
<div className="m-4 md:my-16 md:mx-auto max-w-96">{children}</div>
|
|
</div>
|
|
);
|
|
}
|