-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDataPlaces.js
More file actions
36 lines (35 loc) · 1.27 KB
/
DataPlaces.js
File metadata and controls
36 lines (35 loc) · 1.27 KB
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
const places=[
{
img:'https://images.pexels.com/photos/208745/pexels-photo-208745.jpeg?auto=compress&cs=tinysrgb&w=400',
placeName:'Paris'
},
{
img:'https://images.pexels.com/photos/533769/pexels-photo-533769.jpeg?auto=compress&cs=tinysrgb&w=400',
placeName:'Marseille'
},
{
img:'https://images.pexels.com/photos/417054/pexels-photo-417054.jpeg?auto=compress&cs=tinysrgb&w=400',
placeName:'Lyon'
},
{
img:'https://images.pexels.com/photos/257433/pexels-photo-257433.jpeg?auto=compress&cs=tinysrgb&w=400',
placeName:'Toulouse'
},
{
img:'https://images.pexels.com/photos/532580/pexels-photo-532580.jpeg?auto=compress&cs=tinysrgb&w=400',
placeName:'Nice'
},
{
img:'https://images.pexels.com/photos/610533/pexels-photo-610533.jpeg?auto=compress&cs=tinysrgb&w=400',
placeName:'Nantes'
},
{
img:'https://images.pexels.com/photos/2885919/pexels-photo-2885919.jpeg?auto=compress&cs=tinysrgb&w=400',
placeName:'Montpellier'
},
{
img:'https://images.pexels.com/photos/3201921/pexels-photo-3201921.jpeg?auto=compress&cs=tinysrgb&w=400',
placeName:'Bordeaux'
}
]
module.exports=places;