compositionList.js 501 B

12345678910111213141516171819202122232425262728293031323334353637
  1. export const compositionList = [{
  2. id: 1,
  3. name: "Моцарелла",
  4. caloricity: 28,
  5. price: 15,
  6. },
  7. {
  8. id: 2,
  9. name: "Креветки",
  10. caloricity: 37,
  11. price: 35,
  12. },
  13. {
  14. id: 3,
  15. name: "Салями",
  16. caloricity: 42,
  17. price: 25,
  18. },
  19. {
  20. id: 4,
  21. name: "Лук",
  22. caloricity: 13,
  23. price: 7,
  24. },
  25. {
  26. id: 5,
  27. name: "Томаты",
  28. caloricity: 21,
  29. price: 17,
  30. },
  31. {
  32. id: 6,
  33. name: "Ветчина",
  34. caloricity: 37,
  35. price: 35,
  36. },
  37. ];