diff options
Diffstat (limited to 'front/src/index.tsx')
| -rw-r--r-- | front/src/index.tsx | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/front/src/index.tsx b/front/src/index.tsx index 032464f..33c9e94 100644 --- a/front/src/index.tsx +++ b/front/src/index.tsx @@ -3,14 +3,18 @@ import ReactDOM from 'react-dom/client'; import './index.css'; import App from './App'; import reportWebVitals from './reportWebVitals'; +import { CookiesProvider } from 'react-cookie'; const root = ReactDOM.createRoot( document.getElementById('root') as HTMLElement ); + root.render( - <React.StrictMode> - <App /> - </React.StrictMode> + <CookiesProvider> + <React.StrictMode> + <App /> + </React.StrictMode> + </CookiesProvider> ); // If you want to start measuring performance in your app, pass a function |
