-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproducts.js
More file actions
92 lines (92 loc) · 2.32 KB
/
Copy pathproducts.js
File metadata and controls
92 lines (92 loc) · 2.32 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
exports.products = [
{
id: '53a0724c-a416-4cac-ae45-bfaedce1f147',
name: 'Steel Pot',
description: 'Silver steel pot that is perfect for cooking',
quantity: 230,
price: 42.44,
image: 'img-1',
onSale: false,
categoryId: '34115aac-0ff5-4859-8f43-10e8db23602b',
},
{
id: 'c2af9adc-d0b8-4d44-871f-cef66f86f7f6',
name: 'Salad Bowl',
description: 'Round wooden bowl perfect for tossing and making salads',
quantity: 33,
price: 53.5,
image: 'img-2',
onSale: false,
categoryId: '34115aac-0ff5-4859-8f43-10e8db23602b',
},
{
id: '2c931e7e-510f-49e5-aed6-d6b44087e5a1',
name: 'Spoon',
description: 'Small and delicate spoon',
quantity: 4266,
price: 1.33,
image: 'img-3',
onSale: true,
categoryId: 'c01b1ff4-f894-4ef2-b27a-22aacc2fca70',
},
{
id: '404daf2a-9b97-4b99-b9af-614d07f818d7',
name: 'Shovel',
description: 'Grey rounded shovel for digging',
quantity: 753,
price: 332,
image: 'img-4',
onSale: false,
categoryId: 'c01b1ff4-f894-4ef2-b27a-22aacc2fca70',
},
{
id: '6379c436-9fad-4b3f-a427-2d7241f5c1b1',
name: 'Fertilizer',
description: 'Nitrogen based fertitlizer',
quantity: 53453,
price: 23.11,
image: 'img-5',
onSale: true,
categoryId: 'c01b1ff4-f894-4ef2-b27a-22aacc2fca70',
},
{
id: 'f01bcdec-6783-464e-8f9e-8416830f7569',
name: 'Basketball',
description: 'Outdoor or indoor basketball',
quantity: 128,
price: 59.99,
image: 'img-6',
onSale: true,
categoryId: 'd914aec0-25b2-4103-9ed8-225d39018d1d',
},
{
id: 'a4824a31-5c83-42af-8c1b-6e2461aae1ef',
name: 'Golf Clubs',
description: 'Good for golfing',
quantity: 3,
price: 427.44,
image: 'img-7',
onSale: false,
categoryId: 'd914aec0-25b2-4103-9ed8-225d39018d1d',
},
{
id: 'b553085a-a7e0-4c9b-8a12-f971919c3683',
name: 'Baseball Gloves',
description: 'Professional catcher gloves',
quantity: 745,
price: 77.0,
image: 'img-8',
onSale: true,
categoryId: 'd914aec0-25b2-4103-9ed8-225d39018d1d',
},
{
id: '47bf3941-9c8b-42c0-9c72-7f3985492a5b',
name: 'Soccer Ball',
description: 'Round ball',
quantity: 734,
price: 93.44,
image: 'img-9',
onSale: false,
categoryId: '34115aac-0ff5-4859-8f43-10e8db23602b',
},
]