File size: 317 Bytes
819bacd
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import React from 'react';
import { Container, Box } from '@mui/material';

const Layout = ({ children }) => {
  return (
    <Box sx={{ minHeight: '100vh', backgroundColor: (theme) => theme.palette.background.base }}>
      <Container>
        {children}
      </Container>
    </Box>
  );
};

export default Layout;