15 lines
263 B
TypeScript
15 lines
263 B
TypeScript
|
import '/styles/globals.css'
|
||
|
import Layout from '../components/layout'
|
||
|
import { AppProps } from 'next/app'
|
||
|
|
||
|
function MyApp({ Component, pageProps }: AppProps) {
|
||
|
|
||
|
return (
|
||
|
<Layout>
|
||
|
<Component {...pageProps} />
|
||
|
</Layout>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export default MyApp
|