-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.js
42 lines (42 loc) · 984 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
module.exports =[
{
_id: 2,
name: 'Casual shoe',
image: '/images/d1.jpg',
price: 60,
brand: 'Nike',
rating: 4.5,
numReviews: 10,
countInStock:6,
},
{
_id: 3,
name: 'Walking shoe',
image: '/images/d2.jpg',
price: 40,
brand: 'Reebok',
rating: 3.5,
numReviews: 14,
countInStock:16,
},
{
_id: 4,
name: 'Cap',
image: '/images/d3.jpg',
price: 20,
brand: 'Nike',
rating: 4,
numReviews: 7,
countInStock:3,
},
{
_id: 5,
name: 'Hat',
image: '/images/d4.jpg',
price: 30,
brand: 'Tommy Hilfiger',
rating: 4,
numReviews: 8,
countInStock:9,
},
]