Create pages/_app.tsx
Browse files- pages/_app.tsx +8 -0
pages/_app.tsx
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import type { AppProps } from 'next/app'
|
2 |
+
import '../styles/globals.css'
|
3 |
+
|
4 |
+
function MyApp({ Component, pageProps }: AppProps) {
|
5 |
+
return <Component {...pageProps} />
|
6 |
+
}
|
7 |
+
|
8 |
+
export default MyApp
|