import React from 'react';
// import Navbar from './components/Navbar';
// import Footer from './components/Footer';
import { Box } from '@mui/system';
const App = ({ children }) => {
return (
<>
{/* */}
{children}
{/* */}
>
);
};
export default App;