12 lines
300 B
TypeScript
12 lines
300 B
TypeScript
import { PropsWithChildren } from "react";
|
|
import { Navbar } from "../components/Navbar";
|
|
|
|
export const MainLayout = ({ children }: PropsWithChildren) => {
|
|
return (
|
|
<div className="w-full">
|
|
<Navbar />
|
|
<main className="xl:p-10 p-4 px-10 xl:mx-0">{children}</main>
|
|
</div>
|
|
);
|
|
};
|