From 111b6fbaddf6e104c233d87bb971ba03f5f3ee7a Mon Sep 17 00:00:00 2001 From: eeymoo Date: Thu, 20 Mar 2025 18:06:49 +0800 Subject: [PATCH] wip --- stores/{storeContext.ts => storeContext.tsx} | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) rename stores/{storeContext.ts => storeContext.tsx} (89%) diff --git a/stores/storeContext.ts b/stores/storeContext.tsx similarity index 89% rename from stores/storeContext.ts rename to stores/storeContext.tsx index 0371cf4..c6cfdeb 100644 --- a/stores/storeContext.ts +++ b/stores/storeContext.tsx @@ -23,8 +23,6 @@ export const StoreProvider = ({ children, initialData }) => { const stores = initializeStores(initialData); const { Provider } = StoreContext; return ( - - {children} - + {children} ); };