You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Layout.jsx 359B

123456789101112131415161718
  1. import { Box } from '@mui/material';
  2. import Footer from '../footer/Footer';
  3. import MainNav from '../navbar/MainNav';
  4. function Layout(props) {
  5. return (
  6. <>
  7. <Box sx={{ width: '100%' }}>
  8. {/* <Navbar /> */}
  9. <MainNav />
  10. <main>{props.children}</main>
  11. <Footer></Footer>
  12. </Box>
  13. </>
  14. );
  15. }
  16. export default Layout;