Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. state = {
  2.     ordersList: [
  3.       {
  4.         id: 1,
  5.         status: 'pending',
  6.         table: 12,
  7.         food: [
  8.           { foodId: 0, name: 'tomatoSoup', quantity: 14 },
  9.           { foodId: 1, name: 'pancakes', quantity: 14 }
  10.         ],
  11.         currentDate: 'Sun Mar 23 2019 12:46:45',
  12.         editMode: false
  13.       },
  14.       {
  15.         id: 2,
  16.         status: 'new',
  17.         table: 16,
  18.         food: [
  19.           { foodId: 2, name: 'cola', quantity: 17 },
  20.           { foodId: 3, name: 'onionSoup', quantity: 17 }
  21.         ],
  22.         currentDate: 'Sun Mar 24 2019 22:58:33',
  23.         editMode: false
  24.       }
  25.     ],
  26.     currentId: 2
  27.   };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement