aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples/kitchen-sink/apps/storefront/src/pages/_app.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'examples/kitchen-sink/apps/storefront/src/pages/_app.tsx')
-rw-r--r--examples/kitchen-sink/apps/storefront/src/pages/_app.tsx6
1 files changed, 6 insertions, 0 deletions
diff --git a/examples/kitchen-sink/apps/storefront/src/pages/_app.tsx b/examples/kitchen-sink/apps/storefront/src/pages/_app.tsx
new file mode 100644
index 0000000..7b312a7
--- /dev/null
+++ b/examples/kitchen-sink/apps/storefront/src/pages/_app.tsx
@@ -0,0 +1,6 @@
+import type { AppProps } from "next/app";
+import "../styles.css";
+
+export default function MyApp({ Component, pageProps }: AppProps) {
+ return <Component {...pageProps} />;
+}