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-10 10:09:50 +08:00
|
|
|
import fanFrequenceReducer from "./features/fanFrequenceSlice";
|
|
|
|
import gasReducer from "./features/gasSlice";
|
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-10 10:09:50 +08:00
|
|
|
fanFrequence: fanFrequenceReducer,
|
|
|
|
wind: gasReducer,
|
2023-11-09 13:36:21 +08:00
|
|
|
},
|
|
|
|
});
|