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