Created
November 28, 2018 20:38
-
-
Save mvbattan/603c176658590107a975e02f601c62b9 to your computer and use it in GitHub Desktop.
Configuring CR
This file contains 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
import { combineReducers as CR } from 'redux'; | |
import { wrapCombineReducers } from 'redux-recompose'; | |
const combineReducers = wrapCombineReducers(CR); | |
const rootReducer = combineReducers({ | |
// Add here your reducers like always. | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment