diff options
author | Marcin Zelent <marcin@zelent.net> | 2021-01-08 19:47:37 +0100 |
---|---|---|
committer | Marcin Zelent <marcin@zelent.net> | 2021-01-08 19:47:37 +0100 |
commit | 628632ff5092f1e3cf6c968d9bdfbd9a24f59541 (patch) | |
tree | feddb4e82267bba700a15a6a7091f922f48cae40 /pages/_app.tsx |
Initial commit
Diffstat (limited to 'pages/_app.tsx')
-rw-r--r-- | pages/_app.tsx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/pages/_app.tsx b/pages/_app.tsx new file mode 100644 index 0000000..1cfd2cb --- /dev/null +++ b/pages/_app.tsx @@ -0,0 +1,7 @@ +import '../styles/globals.css'; +import { AppProps } from 'next/app'; + +export default function App({ Component, pageProps }: AppProps): JSX.Element { + // eslint-disable-next-line react/jsx-props-no-spreading + return <Component {...pageProps} />; +} |