summaryrefslogtreecommitdiffstats
path: root/pages/_app.tsx
blob: 3f5c9d548586025d094291c465387cf01bea5baa (plain)
1
2
3
4
5
6
7
8
import '../styles/globals.css'
import type { AppProps } from 'next/app'

function MyApp({ Component, pageProps }: AppProps) {
  return <Component {...pageProps} />
}

export default MyApp