diff options
| author | Jan Tuomi <jan.tuomi@valuemotive.com> | 2021-11-04 13:34:02 +0200 |
|---|---|---|
| committer | Jan Tuomi <jan.tuomi@valuemotive.com> | 2021-11-04 13:34:02 +0200 |
| commit | 462b2fe10cf45da3dbcb5ee20ca6dfb79f46e6b6 (patch) | |
| tree | 2862938769f5c3e0efd57f5256dbdbb5452cdb4e /pages/_app.tsx | |
Initial commit
Diffstat (limited to 'pages/_app.tsx')
| -rw-r--r-- | pages/_app.tsx | 13 |
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; |
