Files
Frontend/src/app/components/container.tsx

15 lines
380 B
TypeScript
Raw Normal View History

2024-04-14 18:46:37 +01:00
import NavBar from "./navbar";
export default function Container({
children,
}: Readonly<{
children: React.ReactNode;
2024-04-16 21:18:08 +01:00
}>): JSX.Element {
2024-04-14 18:46:37 +01:00
return (
<div className="z-[9999] m-auto flex h-screen min-h-full flex-col items-center opacity-90 w-full xs:max-w-[1200px]">
2024-04-14 18:46:37 +01:00
<NavBar />
<div className="w-full flex m-4 justify-center">{children}</div>
2024-04-14 18:46:37 +01:00
</div>
);
}