import { FC } from 'react'; import HeadBar from 'components/NavBar'; const MainLayout: FC = ({ children }) => { return ( <>
{children}
); }; export default MainLayout;