diff options
| author | Armand Philippot <git@armandphilippot.com> | 2021-12-12 23:23:52 +0100 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2021-12-12 23:23:52 +0100 |
| commit | 6c1cbe9f4d956ad6140c780b2f88f5de4e4eee67 (patch) | |
| tree | 86ecc5b223a771d90dd977bc3917a8dacedb4128 /src/pages/_app.tsx | |
| parent | f3d462c8183598362605dc53589583f2859f20b9 (diff) | |
build: move global styles and pages inside src directory
Diffstat (limited to 'src/pages/_app.tsx')
| -rw-r--r-- | src/pages/_app.tsx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/pages/_app.tsx b/src/pages/_app.tsx new file mode 100644 index 0000000..f3f9628 --- /dev/null +++ b/src/pages/_app.tsx @@ -0,0 +1,8 @@ +import '../styles/globals.css'; +import type { AppProps } from 'next/app'; + +function MyApp({ Component, pageProps }: AppProps) { + return <Component {...pageProps} />; +} + +export default MyApp; |
