From 09a949092c59856962e4a7d132bc5a5e76fe5e55 Mon Sep 17 00:00:00 2001 From: ertopogo Date: Sun, 18 Jan 2026 20:32:59 +0100 Subject: Initial commit: Medusa Backend + storefront + config --- storefront/pages/_app.js | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 storefront/pages/_app.js (limited to 'storefront/pages/_app.js') diff --git a/storefront/pages/_app.js b/storefront/pages/_app.js new file mode 100644 index 0000000..1424c52 --- /dev/null +++ b/storefront/pages/_app.js @@ -0,0 +1,17 @@ +import { MedusaProvider } from "medusa-react" +import { QueryClient } from "@tanstack/react-query" +import { medusaClient } from "../lib/medusa-client" + +const queryClient = new QueryClient() + +export default function App({ Component, pageProps }) { + return ( + + + + ) +} + -- cgit v1.2.3