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 329B

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