Skip to content

Instantly share code, notes, and snippets.

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