From 17b014f4aeebc41e19c71ef070d9b4d6147f81e6 Mon Sep 17 00:00:00 2001 From: Dan Abramov Date: Thu, 21 Mar 2024 23:30:33 +0000 Subject: [PATCH] Move QueryProvider inside the key --- src/App.native.tsx | 84 +++++++++++++++++++++++----------------------- src/App.web.tsx | 84 +++++++++++++++++++++++----------------------- 2 files changed, 84 insertions(+), 84 deletions(-) diff --git a/src/App.native.tsx b/src/App.native.tsx index b799a3040e..7eccb84ec6 100644 --- a/src/App.native.tsx +++ b/src/App.native.tsx @@ -77,25 +77,27 @@ function InnerApp() { - - - - - - - {/* All components should be within this provider */} - - - - - - - - - - - - + + + + + + + + {/* All components should be within this provider */} + + + + + + + + + + + + + @@ -119,29 +121,27 @@ function App() { * that is set up in the InnerApp component above. */ return ( - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + ) } diff --git a/src/App.web.tsx b/src/App.web.tsx index 2910bbbae5..a876fc894a 100644 --- a/src/App.web.tsx +++ b/src/App.web.tsx @@ -54,25 +54,27 @@ function InnerApp() { - - - - - - - {/* All components should be within this provider */} - - - - - - - - - - - - + + + + + + + + {/* All components should be within this provider */} + + + + + + + + + + + + + ) @@ -94,29 +96,27 @@ function App() { * that is set up in the InnerApp component above. */ return ( - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + ) }