aboutsummaryrefslogtreecommitdiffstats
path: root/pages/_app.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2021-12-12 19:03:44 +0100
committerArmand Philippot <git@armandphilippot.com>2021-12-12 19:11:04 +0100
commitdf69949ebe244465b5baa7d1b91a2ed161b4827a (patch)
treebe291343bb8e5b58b6eb02bd9b9ea0302d64e7c7 /pages/_app.tsx
chore: initial commit
Diffstat (limited to 'pages/_app.tsx')
-rw-r--r--pages/_app.tsx8
1 files changed, 8 insertions, 0 deletions
diff --git a/pages/_app.tsx b/pages/_app.tsx
new file mode 100644
index 0000000..3f5c9d5
--- /dev/null
+++ b/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