const items = [
  {
    label: "Cucumber",
    cost: 12,
    type: "vegetable",
  },
  {
    label: "Apple",
    cost: 10,
    type: "fruit",
  },
  {
    label: "Orange",
    cost: 20,
    type: "fruit",
  },
  {
    label: "Banana",
    cost: 18,
    type: "fruit",
  },
  {
    label: "Blueberry",
    cost: 40,
    type: "berry",
  },
  {
    label: "Tomato",
    cost: 15,
    type: "vegetable",
  },
  {
    label: "Watermelon",
    cost: 5,
    type: "berry",
  },
  {
    label: "Strawberry",
    cost: 30,
    type: "berry",
  },
];
 
// 1. Вывести список элементов
// 2. Добавить фильтр по типу продукта
// 3. Добавить фильтр по диапазону

Назад