scoresaber-reloaded-v2/src/components/Container.tsx

13 lines
306 B
TypeScript
Raw Normal View History

2023-10-19 04:21:35 +00:00
import Navbar from "./Navbar";
export default function Container({ children }: { children: React.ReactNode }) {
return (
<>
2023-10-19 13:17:55 +00:00
<div className="m-auto flex flex-col items-center justify-center opacity-90 md:max-w-[1200px]">
2023-10-19 04:21:35 +00:00
<Navbar></Navbar>
{children}
</div>
</>
);
}