-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproducts.js
73 lines (73 loc) · 1.7 KB
/
products.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
products = [{
id: 100,
name: 'green detox juice',
price: 60,
instock: 10,
description: "fresh green detox cocktail juice",
images: "images/detox.jpg",
},
{
id: 200,
name: 'orange juice',
price: 70,
instock: 15,
description: "fresh orange juice",
images: "images/orange.jpg",
},
{
id: 300,
name: 'pineapple juice',
price: 100,
instock: 7,
description: "fresh pineapple juice",
images: "images/pineapple.jpg",
},
{
id: 400,
name: 'kiwi juice',
price: 150,
instock: 20,
description: "fresh kiwi juice",
images: "images/kiwi.jpg",
},
{
id: 500,
name: 'strawberry juice',
price: 110,
instock: 5,
description: "fresh strawberry juice",
images: "images/strawberry.jpg",
},
{
id: 600,
name: 'mango juice',
price: 90,
instock: 0,
description: "fresh mango juice",
images: "images/mango.jpg",
},
{
id: 700,
name: 'apple juice',
price: 50,
instock: 30,
description: "fresh apple juice",
images: "images/apple.jpg",
},
{
id: 800,
name: 'cocktail juice',
price: 30,
instock: 25,
description: "fresh cocktail juice of 7 fruits",
images: "images/cocktail.jpg",
},
{
id: 900,
name: 'grap juice',
price: 80,
instock: 10,
description: "fresh grap juice",
images: "images/grap.jpg",
}
]