2019-11-26 10:01:26 +00:00
|
|
|
import { combineReducers } from "@reduxjs/toolkit";
|
|
|
|
|
|
|
|
import ShowplanReducer from "./showplanner/state";
|
2020-03-19 17:49:55 +00:00
|
|
|
import MixerReducer from "./mixer/state";
|
2019-11-26 10:01:26 +00:00
|
|
|
|
|
|
|
const rootReducer = combineReducers({
|
2020-03-16 23:34:19 +00:00
|
|
|
showplan: ShowplanReducer,
|
2020-03-19 17:49:55 +00:00
|
|
|
mixer: MixerReducer
|
2019-11-26 10:01:26 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
export type RootState = ReturnType<typeof rootReducer>;
|
|
|
|
|
|
|
|
export default rootReducer;
|