diff options
Diffstat (limited to 'examples/non-monorepo/pages/_app.tsx')
| -rw-r--r-- | examples/non-monorepo/pages/_app.tsx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/examples/non-monorepo/pages/_app.tsx b/examples/non-monorepo/pages/_app.tsx new file mode 100644 index 0000000..e6f7c5c --- /dev/null +++ b/examples/non-monorepo/pages/_app.tsx @@ -0,0 +1,6 @@ +import "../styles/globals.css"; +import type { AppProps } from "next/app"; + +export default function App({ Component, pageProps }: AppProps) { + return <Component {...pageProps} />; +} |
