Skip to content

Instantly share code, notes, and snippets.

@neosaurrrus
Created October 28, 2018 21:35
Show Gist options
  • Save neosaurrrus/5f35a5b32e3cd51d3c16c2a39cf174d7 to your computer and use it in GitHub Desktop.
Save neosaurrrus/5f35a5b32e3cd51d3c16c2a39cf174d7 to your computer and use it in GitHub Desktop.
updateGrocery = (key, updatedGrocery) => {
const groceries = {...this.state.groceries}
groceries[key] = updatedGrocery
this.setState ({groceries})
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment