aboutsummaryrefslogtreecommitdiff
path: root/src/reducers/index.js
blob: 9beb81c46e55bde98c45c52200c7afb57b58e812 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import inputReducer from '../reducers/input';
import consoleReducer from '../reducers/console';
import settingReducer from '../reducers/setting';

const defaultState = {
  input: inputReducer(undefined, {}),
  console: consoleReducer(undefined, {}),
  setting: settingReducer(undefined, {}),
};

export default function reducer(state = defaultState, action = {}) {
  return Object.assign({}, state, {
    input: inputReducer(state.input, action),
    console: consoleReducer(state.console, action),
    setting: settingReducer(state.setting, action),
  });
}