Created
January 5, 2019 20:15
-
-
Save emyann/1894ea5dd0503c2aeb65a2a8aa453021 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 { default as calls } from '../calls/calls.reducer'; | |
const rootReducer = combineReducers({ | |
calls | |
}); | |
export type AppState = ReturnType<typeof rootReducer>; | |
export default rootReducer; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment