Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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;