We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10ab7e6 commit fc59bdaCopy full SHA for fc59bda
1 file changed
src/index.js
@@ -6,15 +6,19 @@ import App from './App';
6
import AppWrapper from './configuration/AppWrapper'
7
import AppErrorBoundary from './configuration/AppErrorBoundary'
8
import ConfigurationWrapper from './configuration/ConfigurationWrapper'
9
+import { QueryClientProvider } from '@tanstack/react-query'
10
+import { queryClient } from 'src/lib/react-query'
11
12
ReactDOM.render(
13
<React.StrictMode>
14
<AppErrorBoundary>
- <ConfigurationWrapper>
- <AppWrapper>
15
- <App />
16
- </AppWrapper>
17
- </ConfigurationWrapper>
+ <QueryClientProvider client={queryClient}>
+ <ConfigurationWrapper>
+ <AppWrapper>
18
+ <App />
19
+ </AppWrapper>
20
+ </ConfigurationWrapper>
21
+ </QueryClientProvider>
22
</AppErrorBoundary>
23
</React.StrictMode>,
24
document.getElementById('root')
0 commit comments