Skip to content

Instantly share code, notes, and snippets.

@codingnninja
Last active August 6, 2019 21:58
Show Gist options
  • Save codingnninja/70b98413ab615a70cbb9a886f350d76b to your computer and use it in GitHub Desktop.
Save codingnninja/70b98413ab615a70cbb9a886f350d76b to your computer and use it in GitHub Desktop.
Adding food items.
addFoodItem(event){
event.preventDefault()
if (!this.state.food) return;
const foodItem = {
id: this.state.foodItems.length + 1,
food: this.state.food,
cost: this.state.cost,
userId: this.state.userId,
statu: this.state.status
};
this.setState({
food: '',
cost: '',
foodItem: foodItem,
foodItems: [...this.state.foodItems, foodItem]
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment