-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproducts.js
14 lines (14 loc) · 922 Bytes
/
products.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
const PRODUCTS = [
{ id: 1, name: "Apple", category: "fruit", rate: 20, quantity: 0 },
{ id: 2, name: "Avocado", category: "fruit", rate: 60, quantity: 0 },
{ id: 3, name: "Banana", category: "fruit", rate: 10, quantity: 0 },
{ id: 4, name: "Bread", category: "other", rate: 45, quantity: 0 },
{ id: 5, name: "Broccoli", category: "vegetable", rate: 55, quantity: 0 },
{ id: 6, name: "Cabbage", category: "vegetable", rate: 15, quantity: 0 },
{ id: 7, name: "Mango", category: "fruit", rate: 120, quantity: 0 },
{ id: 8, name: "Litchi", category: "fruit", rate: 67, quantity: 0 },
{ id: 9, name: "Pineapple", category: "fruit", rate: 37, quantity: 0 },
{ id: 10, name: "Strawberry", category: "fruit", rate: 69, quantity: 0 },
{ id: 11, name: "Tomato", category: "fruit", rate: 40, quantity: 0 },
{ id: 12, name: "Watermelon", category: "fruit", rate: 50, quantity: 0 },
];