mirror of
https://github.com/PlayEdu/PlayEdu
synced 2025-07-27 12:54:31 +08:00
13 lines
316 B
TypeScript
13 lines
316 B
TypeScript
import { configureStore } from "@reduxjs/toolkit";
|
|
import systemConfigReducer from "./system/systemConfigSlice";
|
|
import loginUserReducer from "./user/loginUserSlice";
|
|
|
|
const store = configureStore({
|
|
reducer: {
|
|
loginUser: loginUserReducer,
|
|
systemConfig: systemConfigReducer,
|
|
},
|
|
});
|
|
|
|
export default store;
|