import { PropsWithChildren } from "react"; import { Navbar } from "../components/Navbar"; export const MainLayout = ({ children }: PropsWithChildren) => { return (
{children}
); };