2022-08-01 06:52:49 +00:00
|
|
|
import '../styles/globals.css'
|
|
|
|
import type { AppProps } from 'next/app'
|
2022-08-01 07:43:16 +00:00
|
|
|
import Layout from "../components/Layout"
|
2022-08-01 06:52:49 +00:00
|
|
|
|
|
|
|
function MyApp({ Component, pageProps }: AppProps) {
|
2022-08-01 07:43:16 +00:00
|
|
|
return <Layout><Component {...pageProps} /></Layout>
|
2022-08-01 06:52:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export default MyApp
|