Skip to content

Instantly share code, notes, and snippets.

@johnrhampton
Created June 21, 2016 12:36
Show Gist options
  • Save johnrhampton/e76b6033b3f15c669f5e3aaf012322cf to your computer and use it in GitHub Desktop.
Save johnrhampton/e76b6033b3f15c669f5e3aaf012322cf to your computer and use it in GitHub Desktop.
/common/reducers/index.js
'use strict';
import {combineReducers} from 'redux';
import admin_reducer from './admin';
import {dialer_reducer} from './dialer.reducer';
import {disposition_reducer} from './disposition.reducer';
import {lead_reducer} from './lead.reducer';
import {loading_reducer} from './loading.reducer';
import {navigation_reducer} from './navigation.reducer';
import {notify_reducer} from './notify.reducer';
import {user_reducer} from './user.reducer';
import {vici_reducer} from './vici.reducer';
import {weather_reducer} from './weather.reducer';
const rootReducer = combineReducers({
admin_reducer,
dialer_reducer,
disposition_reducer,
lead_reducer,
loading_reducer,
navigation_reducer,
notify_reducer,
user_reducer,
vici_reducer,
weather_reducer
});
export default rootReducer;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment