diff options
author | rohan09-raj <[email protected]> | 2022-08-17 16:37:42 +0530 |
---|---|---|
committer | rohan09-raj <[email protected]> | 2022-08-17 16:37:42 +0530 |
commit | 3e7f5cbd876b29c92fc1cda58aa54a9c591ef026 (patch) | |
tree | e5706d93708ae378e913a4d1737b0aec6c3b382d /client/src/index.js | |
parent | 1c9a3d21cc3479d299181d98fb895614e0aaf649 (diff) |
lol
Diffstat (limited to 'client/src/index.js')
-rw-r--r-- | client/src/index.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/client/src/index.js b/client/src/index.js index 652a231..0f8c576 100644 --- a/client/src/index.js +++ b/client/src/index.js @@ -5,6 +5,7 @@ import { QueryClient, QueryClientProvider } from 'react-query' import './index.css' import App from './App' import './i18nextInit' +import { Context } from './context/User' const queryClient = new QueryClient() @@ -13,7 +14,9 @@ root.render( <React.StrictMode> <BrowserRouter> <QueryClientProvider client={queryClient}> - <App /> + <Context> + <App /> + </Context> </QueryClientProvider> </BrowserRouter> </React.StrictMode> |