single reducer

This commit is contained in:
Shin'ya Ueoka 2017-10-04 22:01:16 +09:00
parent 6594841b1d
commit 79a4a805f6
6 changed files with 14 additions and 9 deletions

View file

@ -1,11 +1,15 @@
import inputReducer from '../reducers/input';
import consoleReducer from '../reducers/console';
import settingReducer from '../reducers/setting';
import followReducer from '../reducers/follow';
import completionReducer from '../reducers/completion';
const defaultState = {
input: inputReducer(undefined, {}),
console: consoleReducer(undefined, {}),
setting: settingReducer(undefined, {}),
follow: followReducer(undefined, {}),
completion: completionReducer(undefined, {}),
};
export default function reducer(state = defaultState, action = {}) {
@ -13,5 +17,7 @@ export default function reducer(state = defaultState, action = {}) {
input: inputReducer(state.input, action),
console: consoleReducer(state.console, action),
setting: settingReducer(state.setting, action),
follow: followReducer(state.follow, action),
completion: completionReducer(state.completion, action),
});
}