-
Notifications
You must be signed in to change notification settings - Fork 0
/
datarenamed.js
119 lines (101 loc) · 2.7 KB
/
datarenamed.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
// const cats = [
// {
// id: 1,
// category: 'Laufrad',
// price: 0,
// img:
// 'https://shop.zeit.de/media/image/a3/f4/0e/Banwood_32635_Laufradblau2.jpg',
// name: 'Hamideh',
// },
// {
// id: 2,
// category: 'Laufrad',
// price: 0,
// img:
// 'https://images-na.ssl-images-amazon.com/images/I/61orDpVqoCL._SY355_.jpg',
// name: 'Ayda',
// },
// {
// id: 3,
// category: 'Laufrad',
// price: 0,
// img: 'https://www.pinolino.de/wp-content/uploads/product_images/239471.jpg',
// name: 'Rezvaneh',
// },
// {
// id: 4,
// category: 'Rennrad',
// price: 10,
// img:
// 'https://shop.der-ritzler.de/wp-content/uploads/2017/04/KREB6352-1.jpg',
// name: 'Hasti',
// },
// {
// id: 5,
// category: 'Rennrad',
// price: 10,
// img:
// 'https://cdn.bike24.net/i/p/3/3/302533_00_c.jpg?v732128dd8d11dbaab0448ad94b547b2f4b8ed8a6',
// name: 'Zahra',
// },
// {
// id: 12,
// category: 'Rennrad',
// price: 10,
// img:
// 'https://image.jimcdn.com/app/cms/image/transf/dimension=990x10000:format=jpg/path/s370c4abeb6d9c440/image/ic998e5add9b6358a/version/1546890187/rennrad-sammler.jpg',
// name: 'Samin',
// },
// {
// id: 6,
// category: 'MountainBike',
// price: 10,
// img:
// 'https://keyassets.timeincuk.net/inspirewp/live/wp-content/uploads/sites/11/2017/06/Genius-900-Tuned_SCOTT-Sports_bike_Close-Up_2018_22-e1517576991890.jpg',
// name: 'Narges',
// },
// {
// id: 11,
// category: 'MountainBike',
// price: 10,
// img:
// 'https://www.bigw.com.au/medias/sys_master/images/images/hc7/hd8/13701535563806.jpg',
// name: 'Nafise',
// },
// {
// id: 7,
// category: 'HybridBike',
// price: 5,
// img: 'https://www.rei.com/media/product/121596',
// name: 'Nasim',
// },
// {
// id: 8,
// category: 'Cargobike',
// price: 15,
// img:
// 'https://i0.wp.com/cargocycles.com.au/wp-content/uploads/2018/04/products-image_2038.jpg?fit=598%2C418&ssl=1',
// name: 'Parastoo',
// },
// {
// id: 9,
// category: 'Cargobike',
// price: 15,
// img: 'https://cdn.shoplightspeed.com/shops/621737/files/13096986/image.jpg',
// name: 'Shadi',
// },
// {
// id: 10,
// category: 'Cargobike',
// price: 15,
// img:
// 'https://cdn.shopify.com/s/files/1/0791/1071/products/SUBMARINE_2000x_5b72c13f-f3fb-4599-9aa3-0b1cc75c1247_2000x.png?v=1555487468',
// name: 'Deli',
// },
// ];
// export function getBikeById(id) {
// return cats.find(bike => bike.id === id);
// }
// export default function getAllBikes() {
// return cats;
// }