Work in local

This commit is contained in:
Maxime Boulay
2025-05-13 06:38:33 +02:00
parent b9a189861e
commit 67d61282d1
4 changed files with 29 additions and 3 deletions

View File

@@ -1,5 +1,6 @@
import React, { Suspense } from 'react';
import ReactDOM from 'react-dom';
import { createRoot } from "react-dom/client";
import 'bootstrap/dist/css/bootstrap.css';
import './index.css';
import App from './App';
@@ -9,15 +10,16 @@ import * as serviceWorker from './serviceWorker';
import Spinner from './components/Spinner'
import "./i18n";
ReactDOM.render(
const rootElement = document.getElementById("root");
const root = createRoot(rootElement);
root.render(
<React.StrictMode>
<Provider store={store}>
<Suspense fallback={<Spinner />}>
<App />
</Suspense>
</Provider>
</React.StrictMode>,
document.getElementById('root')
</React.StrictMode>
);
// If you want your app to work offline and load faster, you can change