diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2021-02-09 16:51:13 +0000 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2021-02-09 16:51:13 +0000 |
| commit | 1a798bdb4003920cd51134a55a6db8fa640fce29 (patch) | |
| tree | 45f16845ae14a9dbde82cfce2d45ddcf6713e09e /pages/_app.js | |
| download | lawrence-hill-1a798bdb4003920cd51134a55a6db8fa640fce29.tar.gz lawrence-hill-1a798bdb4003920cd51134a55a6db8fa640fce29.tar.bz2 lawrence-hill-1a798bdb4003920cd51134a55a6db8fa640fce29.zip | |
Added project files
Diffstat (limited to 'pages/_app.js')
| -rw-r--r-- | pages/_app.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/pages/_app.js b/pages/_app.js new file mode 100644 index 0000000..1e1cec9 --- /dev/null +++ b/pages/_app.js @@ -0,0 +1,7 @@ +import '../styles/globals.css' + +function MyApp({ Component, pageProps }) { + return <Component {...pageProps} /> +} + +export default MyApp |
