13 lines
219 B
JavaScript
13 lines
219 B
JavaScript
import '../styles/global.scss'
|
|
import Layout from '../components/layout'
|
|
|
|
function MyApp ({ Component, pageProps }) {
|
|
return (
|
|
<Layout>
|
|
<Component {...pageProps} />
|
|
</Layout>
|
|
)
|
|
}
|
|
|
|
export default MyApp
|