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

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