Advertisement
Guest User

Untitled

a guest
Aug 18th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. addFoodItem(event){
  2. event.preventDefault()
  3. if (!this.state.food) return;
  4. const foodItem = {
  5. id: this.state.foodItems.length + 1,
  6. food: this.state.food,
  7. cost: this.state.cost,
  8. userId: this.state.userId,
  9. statu: this.state.status
  10. };
  11.  
  12. this.setState({
  13. food: '',
  14. cost: '',
  15. foodItem: foodItem,
  16. foodItems: [...this.state.foodItems, foodItem]
  17. })
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement