Created
December 11, 2017 17:31
-
-
Save mvbattan/0a897a0e27f6019c1d062c95a6fa1dc1 to your computer and use it in GitHub Desktop.
Handlers with effects
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const reducerDescription = { | |
[actions.MATCHES]: onLoading(), | |
[actions.MATCHES_SUCCESS]: onSuccess(), | |
[actions.MATCHES_FAILURE]: onFailure(), | |
[actions.PITCHES]: onLoading(), | |
[actions.PITCHES_SUCCESS]: onSuccess(), | |
[actions.PITCHES_FAILURE]: onFailure() | |
}; | |
export default createReducer(initialState, reducerDescription); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment