correct usage of reduce-reducers
问题 I don't understand what reduce-reducers is meant for. Should it be used in the case that I have 2 reducer functions containing the same action? function reducerA(state, action){ switch(action.type): ... case 'SAME_ACTION': {...state, field: state.field+1} } function reducerB(state, action){ switch(action.type): ... case 'SAME_ACTION': {...state, field: state.field*2} } So if I call reduceReducer on reducerA and reducerB and action 'SAME_ACTION' is invoked for {field: 0} then I would have a