Created
April 23, 2018 11:13
-
-
Save Tinusw/3f47dcfb2aa1ab83f3487b3061ebb7b5 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 { reducer as form } from 'redux-form'; | |
import authReducer from './auth_reducer' | |
const rootReducer = combineReducers({ | |
auth: authReducer | |
}); | |
export default rootReducer; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment