aboutsummaryrefslogtreecommitdiff
path: root/pages/_app.tsx
diff options
context:
space:
mode:
authorlonkaars <l.leblansch@gmail.com>2021-03-26 17:38:45 +0100
committerlonkaars <l.leblansch@gmail.com>2021-03-26 17:38:45 +0100
commitc0318023f8b8f52347fa9fd7c654e42b7e0f68aa (patch)
tree70f4be4326b9c9429042ae6b85b2f42b42564ec6 /pages/_app.tsx
initial commit
Diffstat (limited to 'pages/_app.tsx')
-rw-r--r--pages/_app.tsx6
1 files changed, 6 insertions, 0 deletions
diff --git a/pages/_app.tsx b/pages/_app.tsx
new file mode 100644
index 0000000..8b4d14a
--- /dev/null
+++ b/pages/_app.tsx
@@ -0,0 +1,6 @@
+import '../styles/globals.css'
+
+export default function Blog({ Component, pageProps }) {
+ return <Component {...pageProps} />
+}
+