[#1] added base calendar and started to tweak ui

This commit is contained in:
Camille Moussu
2025-06-27 18:11:23 +02:00
parent cceb83519f
commit 624c1b43ca
19 changed files with 1593 additions and 238 deletions
+2 -1
View File
@@ -1,6 +1,6 @@
import { combineReducers, configureStore } from "@reduxjs/toolkit";
import userReducer from "../features/User/userSlice";
import eventsReducer from "../features/Events/EventsSlice";
import { createReduxHistoryContext } from "redux-first-history";
import { createBrowserHistory } from "history";
@@ -10,6 +10,7 @@ const { createReduxHistory, routerMiddleware, routerReducer } =
const rootReducer = combineReducers({
router: routerReducer,
user: userReducer,
events: eventsReducer,
});
export const setupStore = (preloadedState?: Partial<RootState>) => {