-
Notifications
You must be signed in to change notification settings - Fork 807
/
Copy pathdata.js
44 lines (44 loc) · 813 Bytes
/
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
const data = ( {
products: [
{
_id: '1',
name: 'Slim Shirt',
category: 'Shirts',
image: '/images/d1.jpg',
price: 60,
brand: ' Nike',
rating: 4.5,
numReviews: 10
},
{
_id: '2',
name: 'Fit Shirt',
category: 'Shirts',
image: '/images/d1.jpg',
price: 50,
brand: ' Nike',
rating: 4.2,
numReviews: 5
},
{
_id: '3',
name: 'Best Pants',
category: 'Pants',
image: '/images/d1.jpg',
price: 70,
brand: ' Nike',
rating: 4.5,
numReviews: 8
}, {
_id: '4',
name: 'Best Pants',
category: 'Pants',
image: '/images/d1.jpg',
price: 70,
brand: ' Nike',
rating: 4.5,
numReviews: 8
},
]
})
export default data;