Skip to content

Instantly share code, notes, and snippets.

@ryanjyost
Created January 22, 2017 21:00
Show Gist options
  • Select an option

  • Save ryanjyost/9ff0763ac0b0bef4e5b0b9845081ccd2 to your computer and use it in GitHub Desktop.

Select an option

Save ryanjyost/9ff0763ac0b0bef4e5b0b9845081ccd2 to your computer and use it in GitHub Desktop.
rainy-day-fund/src/reducers/index.js
//src/reducers/index.js
import { combineReducers } from 'redux';
import { assumptionsReducer, expensesReducer, savingsPlanReducer } from './reducers';
const appReducer = combineReducers({
assumptions: assumptionsReducer,
expenses: expensesReducer,
savingsPlan: savingsPlanReducer
});
export default appReducer;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment