aboutsummaryrefslogtreecommitdiffstats
path: root/src/pages/_app.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages/_app.tsx')
-rw-r--r--src/pages/_app.tsx8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/pages/_app.tsx b/src/pages/_app.tsx
new file mode 100644
index 0000000..f3f9628
--- /dev/null
+++ b/src/pages/_app.tsx
@@ -0,0 +1,8 @@
+import '../styles/globals.css';
+import type { AppProps } from 'next/app';
+
+function MyApp({ Component, pageProps }: AppProps) {
+ return <Component {...pageProps} />;
+}
+
+export default MyApp;