12345678910111213141516171819202122232425262728293031323334353637 |
- export const compositionList = [{
- id: 1,
- name: "Моцарелла",
- caloricity: 28,
- price: 15,
- },
- {
- id: 2,
- name: "Креветки",
- caloricity: 37,
- price: 35,
- },
- {
- id: 3,
- name: "Салями",
- caloricity: 42,
- price: 25,
- },
- {
- id: 4,
- name: "Лук",
- caloricity: 13,
- price: 7,
- },
- {
- id: 5,
- name: "Томаты",
- caloricity: 21,
- price: 17,
- },
- {
- id: 6,
- name: "Ветчина",
- caloricity: 37,
- price: 35,
- },
- ];
|