-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.js
89 lines (86 loc) · 2.44 KB
/
data.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
export const 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: "53a0724c-a416-4cac-ae45-bfae3214f147",
name: "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: "53a0724c-a416-4cac-ae45-bfaedce1f741",
name: "Steel ",
description: "Silver steel pot that is perfect for cooking",
quantity: 230,
price: 42.44,
image: "img-1",
onSale: false,
categoryId: "c01b1ff4-f894-4ef2-b27a-22aacc2fca70"
},
{
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: "c01b1ff4-f894-4ef2-b27a-22aacc2fca70"
},
{
id: "c2af9adc-d0b8-4d44-871f-cef66f861232",
name: "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: "c2af9adc-d0b8-4d44-871f-cef66f86ffhj",
name: "Salad",
description: "Round wooden bowl perfect for tossing and making salads",
quantity: 33,
price: 53.5,
image: "img-3",
onSale: false,
categoryId: "d914aec0-25b2-4103-9ed8-225d39018d1d"
},
{
id: "2c931e7e-510f-49e5-aed6-d6b44087e5a1",
name: "Spoon",
description: "Small and delicate spoon",
quantity: 4266,
price: 1.33,
image: "img-3",
onSale: true,
categoryId: "d914aec0-25b2-4103-9ed8-225d39018d1d"
}
];
export const categories = [
{
id: "c01b1ff4-f894-4ef2-b27a-22aacc2fca70",
name: "Kitchen",
},
{
id: "34115aac-0ff5-4859-8f43-10e8db23602b",
name: "Garden",
},
{
id: "d914aec0-25b2-4103-9ed8-225d39018d1d",
name: "Sports",
},
];