xuchang-new/src/store/index.js

11 lines
258 B
JavaScript
Raw Normal View History

2023-11-09 13:36:21 +08:00
import { configureStore } from "@reduxjs/toolkit";
2023-11-09 16:26:00 +08:00
import kilnReducer from "./features/kilnSlice";
2023-11-09 17:01:25 +08:00
import fireReducer from "./features/fireSlice";
2023-11-09 13:36:21 +08:00
export const store = configureStore({
reducer: {
2023-11-09 16:26:00 +08:00
kiln: kilnReducer,
2023-11-09 17:01:25 +08:00
fireInfo: fireReducer,
2023-11-09 13:36:21 +08:00
},
});