diff options
author | 2021-08-17 04:10:49 -0700 | |
---|---|---|
committer | 2021-08-17 04:10:49 -0700 | |
commit | d7151f07bf41f617dd96bced381660fd48faebf1 (patch) | |
tree | 3a7132caaae2e3c5bff21fa48e174de16814816e /demos/hello-next/pages/_app.js | |
parent | 6997367242139158b1feedf3475a49a87f667c11 (diff) | |
download | bun-d7151f07bf41f617dd96bced381660fd48faebf1.tar.gz bun-d7151f07bf41f617dd96bced381660fd48faebf1.tar.zst bun-d7151f07bf41f617dd96bced381660fd48faebf1.zip |
hello-next folder
Former-commit-id: dc1c431e6e5c24dd581857090ca872c716cffe07
Diffstat (limited to 'demos/hello-next/pages/_app.js')
-rw-r--r-- | demos/hello-next/pages/_app.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/demos/hello-next/pages/_app.js b/demos/hello-next/pages/_app.js new file mode 100644 index 000000000..2fc3e0700 --- /dev/null +++ b/demos/hello-next/pages/_app.js @@ -0,0 +1,7 @@ +import "../styles/globals.css"; + +function MyApp({ Component, pageProps }) { + return <Component {...pageProps} />; +} + +export default MyApp; |