11 lines
208 B
JavaScript
11 lines
208 B
JavaScript
import Layout from '../components/Layout'
|
|
import '../styles/globals.css'
|
|
|
|
export default function App({ Component, pageProps }) {
|
|
return(
|
|
<Layout>
|
|
<Component {...pageProps} />
|
|
</Layout>
|
|
)
|
|
}
|