leothesouthafrican's picture
Initial commit on web_app_temp
de234b1
raw
history blame contribute delete
347 Bytes
import React from 'react';
// import Navbar from './components/Navbar';
// import Footer from './components/Footer';
import { Box } from '@mui/system';
const App = ({ children }) => {
return (
<>
{/* <Navbar /> */}
<Box flexGrow={1}>
{children}
</Box>
{/* <Footer /> */}
</>
);
};
export default App;