Skip to content

Instantly share code, notes, and snippets.

@emyann
Created January 5, 2019 20:15
Show Gist options
  • Save emyann/1894ea5dd0503c2aeb65a2a8aa453021 to your computer and use it in GitHub Desktop.
Save emyann/1894ea5dd0503c2aeb65a2a8aa453021 to your computer and use it in GitHub Desktop.
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