first commit
This commit is contained in:
15
pages/_app.js
Normal file
15
pages/_app.js
Normal file
@ -0,0 +1,15 @@
|
||||
import Layout from '../components/layout/Layout'
|
||||
import '../styles/globals.css'
|
||||
import NextNProgress from "nextjs-progressbar";
|
||||
|
||||
|
||||
function MyApp({ Component, pageProps }) {
|
||||
return (
|
||||
<>
|
||||
<NextNProgress />
|
||||
<Layout><Component {...pageProps} /></Layout>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
export default MyApp
|
||||
Reference in New Issue
Block a user