-
Notifications
You must be signed in to change notification settings - Fork 844
Expand file tree
/
Copy pathdata.js
More file actions
46 lines (46 loc) · 862 Bytes
/
data.js
File metadata and controls
46 lines (46 loc) · 862 Bytes
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
export default {
products: [
{
_id: '1',
name: 'Slim Shirt',
category: 'Shirts',
image: '/images/d1.jpg',
price: 60,
brand: ' Nike',
rating: 4.5,
numReviews: 10,
countInStock: 6,
},
{
_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,
countInStock: 6,
}, {
_id: '4',
name: 'Best Pants',
category: 'Pants',
image: '/images/d1.jpg',
price: 70,
brand: ' Nike',
rating: 4.5,
numReviews: 8,
countInStock: 6,
},
]
}