Skip to content

Instantly share code, notes, and snippets.

@t3h2mas
Created September 4, 2016 03:11
Show Gist options
  • Save t3h2mas/e1728b3431042df49782b47e0d1e1d8d to your computer and use it in GitHub Desktop.
Save t3h2mas/e1728b3431042df49782b47e0d1e1d8d to your computer and use it in GitHub Desktop.
immutable(silly)
return Object.assign(
{},
state,
{
recipes: [
...state.recipes,
{
name: action.name,
action: action.ingredients,
id: state.recipes.length
}
]
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment