mirror of
https://gitlab.com/megazordpobeda/DataRush.git
synced 2026-05-22 23:17:09 +00:00
18 lines
340 B
TypeScript
18 lines
340 B
TypeScript
import { Header } from "@/components/layout/header";
|
|
import { Outlet } from "react-router";
|
|
|
|
const NavbarLayout = () => {
|
|
return (
|
|
<>
|
|
<Header />
|
|
<div className="px-4 sm:px-6">
|
|
<div className="m-auto my-6 w-full max-w-5xl">
|
|
<Outlet />
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export { NavbarLayout };
|