Spaces:
Paused
Paused
File size: 775 Bytes
a0fda44 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
import { configureStore } from "@reduxjs/toolkit";
import sidebarReducer from "./sidebarSlice";
import modalReducer from "./modalSlice";
import chatReducer from "./chatSlice";
import userProfileReducer from "./userProfileSlice";
import authReducer from "./authSlice";
import notificationReducer from "./notificationSlice";
import contactsReducer from "./contactsSlice";
import userReducer from "./userSlice";
import socketReducer from "./socketSlice";
import chatListReducer from "./chatListSlice";
const store = configureStore({
reducer: {
sidebarReducer,
modalReducer,
chatReducer,
userProfileReducer,
authReducer,
notificationReducer,
contactsReducer,
userReducer,
socketReducer,
chatListReducer,
},
});
export default store;
|