WoTak / pages /_app.js
MoShow's picture
Neural Networks
bf2b9fd verified
raw
history blame contribute delete
423 Bytes
import '../styles/globals.css';
import CustomNavbar from '../components/CustomNavbar';
import CustomSidebar from '../components/CustomSidebar';
function MyApp({ Component, pageProps }) {
return (
<>
<CustomNavbar />
<div className="flex">
<CustomSidebar />
<main className="flex-1">
<Component {...pageProps} />
</main>
</div>
</>
);
}
export default MyApp;