abadesalex's picture
UI
819bacd
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;