In redux you will have to generate reducers to update the state. You will have to call relevant reducer based on the action type. For example, function setSurveySuccess(state, action) { ... return newState; }...
↧