This commit is contained in:
Виталий Лавшонок
2025-10-23 14:03:01 +03:00
parent 1552ecd565
commit 8df53a4ed5
10 changed files with 581 additions and 239 deletions

View File

@@ -5,11 +5,16 @@ import "./styles/index.css";
import "./styles/palette/theme-dark.css";
import "./styles/palette/theme-light.css";
import { BrowserRouter } from "react-router-dom";
import { Provider } from "react-redux";
import { store } from "./redux/store";
createRoot(document.getElementById("root")!).render(
<StrictMode>
<BrowserRouter>
<Provider store={store}>
<App />
</Provider>
</BrowserRouter>
</StrictMode>
);