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.
| 1234567891011121314151617 |
- import { Box } from '@mui/material';
- import Footer from '../footer/Footer';
- import Navbar from '../navbar/Navbar';
-
- function Layout(props) {
- return (
- <>
- <Box sx={{ width: '100%' }}>
- <Navbar />
- <main>{props.children}</main>
- <Footer></Footer>
- </Box>
- </>
- );
- }
-
- export default Layout;
|