Created
January 22, 2017 21:00
-
-
Save ryanjyost/9ff0763ac0b0bef4e5b0b9845081ccd2 to your computer and use it in GitHub Desktop.
rainy-day-fund/src/reducers/index.js
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
| //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