import React from "react"; import Navbar from "../containers/navbar"; type LayoutProps = { children: React.ReactNode; }; const MainLayout = ({ children }: LayoutProps) => { return (
{children}
); }; export default MainLayout;