Skip to content

Instantly share code, notes, and snippets.

@Colour-Full
Created March 18, 2018 20:17
Show Gist options
  • Save Colour-Full/38c7ff68229fce3a2c911bc688b17f7b to your computer and use it in GitHub Desktop.
Save Colour-Full/38c7ff68229fce3a2c911bc688b17f7b to your computer and use it in GitHub Desktop.
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