Created
March 18, 2018 20:17
-
-
Save Colour-Full/38c7ff68229fce3a2c911bc688b17f7b 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 getRecipes from './recipe_actions/get_recipes.js'; | |
import loadingRecipes from './recipe_actions/loading_recipes.js'; | |
const reducers = combineReducers({ | |
recipes: getRecipes, | |
loadRecipes: loadingRecipes, | |
}); | |
export default reducers; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment