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

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