Created
November 27, 2018 17:51
-
-
Save larien/510823529ad54207928a23153e78b41e to your computer and use it in GitHub Desktop.
reducer
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 } from 'redux' | |
import reviews from './reducers/reviews' | |
import common from './reducers/common' | |
import { routerReducer } from 'react-router-redux' | |
export default combineReducers({ | |
reviews, | |
common, | |
router: routerReducer | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment