Created
March 18, 2018 20:15
-
-
Save Colour-Full/cc460d3619aa57ab8c9d7f4b1392ae35 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 { GET_RECIPES } from '../../actions/actions'; | |
export default function getRecipe(state = {}, action) { | |
switch (action.type) { | |
case GET_RECIPES: | |
return action.payload | |
} | |
return state; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment