-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcars.js
76 lines (74 loc) · 1.65 KB
/
cars.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
module.exports = [
{
_id: '520',
name: 'BMW',
rating: '5',
price: '16900',
imageName: 'b-img-13.jpg',
condition: 'new',
body: 'sedan',
make: 'bmw',
year:'2015',
transition: 'automatic'
},
{
_id: '521',
name: 'NISSAN',
rating: '3',
price: '12000',
imageName: 'b-img-1.jpg',
condition: 'used',
body: 'truck',
make: 'nissan',
year:'2014',
transition: 'automatic'
},
{
_id: '522',
name: 'MERCEDES',
rating: '4',
price: '19200',
imageName: 'b-img-11.jpg',
condition: 'new',
body: 'compact',
make: 'mercedes',
year:'2012',
transition: 'manual'
},
{
_id: '523',
name: 'FOR RANGER',
rating: '2',
price: '125800',
imageName: 'b-img-2.jpg',
condition: 'used',
body: 'truck',
make: 'ford',
year:'2016',
transition: 'semi_automatic'
},
{
_id: '524',
name: 'MAZDA',
rating: '1',
price: '10650',
imageName: 'b-img-3.jpg',
condition: 'new',
body: 'sedan',
make: 'mazda',
year:'2014',
transition: 'manual'
},
{
_id: '525',
name: 'HYUNDAY',
rating: '5',
price: '75200',
imageName: 'b-img-4.jpg',
condition: 'used',
body: 'minivan',
make: 'huyndai',
year:'2015',
transition: 'semi_automatic'
},
];