Created
May 26, 2019 15:32
-
-
Save rafaelrozon/7a3753db391c946b3e0d7d1d5e7b172f to your computer and use it in GitHub Desktop.
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
import { combineReducers } from 'redux'; | |
import { | |
todoReducer, | |
TodoConstants | |
} from '~/features/todo'; | |
export default combineReducers({ | |
[TodoConstants.NS]: todoReducer | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment