aboutsummaryrefslogtreecommitdiffstats
path: root/pages/_app.tsx
diff options
context:
space:
mode:
authorJan Tuomi <jans.tuomi@gmail.com>2021-06-29 21:11:25 +0300
committerJan Tuomi <jans.tuomi@gmail.com>2021-06-29 21:11:25 +0300
commitac31a7d9d43d3dcaa37906569dcb8eaf8429b3bf (patch)
treebfeb5d9326bcace756457f6a5a7513ec4a783709 /pages/_app.tsx
Initial commit
Diffstat (limited to 'pages/_app.tsx')
-rw-r--r--pages/_app.tsx7
1 files changed, 7 insertions, 0 deletions
diff --git a/pages/_app.tsx b/pages/_app.tsx
new file mode 100644
index 0000000..945e892
--- /dev/null
+++ b/pages/_app.tsx
@@ -0,0 +1,7 @@
+import '../styles/globals.css'
+import type { AppProps } from 'next/app'
+
+function MyApp({ Component, pageProps }: AppProps) {
+ return <Component {...pageProps} />
+}
+export default MyApp