save keymap in input store in content

This commit is contained in:
Shin'ya Ueoka 2017-10-09 14:30:58 +09:00
parent 892eb8a6a6
commit 355c0c6457
6 changed files with 19 additions and 24 deletions

View file

@ -1,18 +1,15 @@
import settingReducer from 'settings/reducers/setting';
import inputReducer from './input';
import followReducer from './follow';
// Make setting reducer instead of re-use
const defaultState = {
input: inputReducer(undefined, {}),
setting: settingReducer(undefined, {}),
follow: followReducer(undefined, {}),
};
export default function reducer(state = defaultState, action = {}) {
return Object.assign({}, state, {
input: inputReducer(state.input, action),
setting: settingReducer(state.setting, action),
follow: followReducer(state.follow, action),
});
}