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

13 lines
295 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 (
<>
<div className="md:max-w-[1200px] m-auto flex flex-col items-center justify-center">
<Navbar></Navbar>
{children}
</div>
</>
);
}