aboutsummaryrefslogtreecommitdiffstats
path: root/pages/_app.tsx
diff options
context:
space:
mode:
authorJan Tuomi <jan.tuomi@valuemotive.com>2021-11-04 13:34:02 +0200
committerJan Tuomi <jan.tuomi@valuemotive.com>2021-11-04 13:34:02 +0200
commit462b2fe10cf45da3dbcb5ee20ca6dfb79f46e6b6 (patch)
tree2862938769f5c3e0efd57f5256dbdbb5452cdb4e /pages/_app.tsx
Initial commit
Diffstat (limited to 'pages/_app.tsx')
-rw-r--r--pages/_app.tsx13
1 files changed, 13 insertions, 0 deletions
diff --git a/pages/_app.tsx b/pages/_app.tsx
new file mode 100644
index 0000000..047963f
--- /dev/null
+++ b/pages/_app.tsx
@@ -0,0 +1,13 @@
+import "../styles/globals.css";
+import React from "react";
+
+interface Props {
+ Component: typeof React.Component;
+ pageProps: any;
+}
+
+const MyApp = ({ Component, pageProps }: Props): JSX.Element => {
+ return <Component {...pageProps} />;
+};
+
+export default MyApp;