15 lines
263 B
TypeScript
Executable file
15 lines
263 B
TypeScript
Executable file
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
|