Ex with a combineReducers() function todos(state = [], action) { // Somehow calculate it... return nextState }  function visibleTodoFilter(state = 'SHOW_ALL', action) { // Somehow calculate it... return nextState }  let todoApp = combineReducers({ todos, visibleTodoFilter })
React & Redux
For webdevelopers: learning to use React and Redux
