usermanagement, role, etc

This commit is contained in:
unknown
2025-01-27 18:45:14 +07:00
parent 7772062831
commit dbcd5a736a
17 changed files with 1121 additions and 134 deletions

View File

@ -4,14 +4,18 @@ import "./index.css";
import App from "./routes/routes";
import reportWebVitals from "./reportWebVitals";
import { BrowserRouter } from "react-router-dom";
import { Provider } from 'react-redux';
import store from './store/store';
const root = ReactDOM.createRoot(document.getElementById("root"));
root.render(
<BrowserRouter>
<React.StrictMode>
<App />
</React.StrictMode>
</BrowserRouter>
<Provider store={store}>
<BrowserRouter>
<React.StrictMode>
<App />
</React.StrictMode>
</BrowserRouter>
</Provider>
);
// If you want to start measuring performance in your app, pass a function