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, 0 insertions, 6 deletions
diff --git a/examples/kitchen-sink/apps/storefront/src/pages/_app.tsx b/examples/kitchen-sink/apps/storefront/src/pages/_app.tsx
deleted file mode 100644
index 7b312a7..0000000
--- a/examples/kitchen-sink/apps/storefront/src/pages/_app.tsx
+++ /dev/null
@@ -1,6 +0,0 @@
-import type { AppProps } from "next/app";
-import "../styles.css";
-
-export default function MyApp({ Component, pageProps }: AppProps) {
- return <Component {...pageProps} />;
-}