16 lines
276 B
JavaScript
16 lines
276 B
JavaScript
|
import '../styles/globals.css'
|
||
|
import Navbar from '../components/Navbar'
|
||
|
|
||
|
function MyApp({ Component, pageProps }) {
|
||
|
return (
|
||
|
<>
|
||
|
<Navbar/>
|
||
|
<div className='page-container'>
|
||
|
<Component {...pageProps} />
|
||
|
</div>
|
||
|
</>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export default MyApp
|