Skip to content

Instantly share code, notes, and snippets.

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