-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvenues-mock-data.js
69 lines (69 loc) · 1.08 KB
/
venues-mock-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
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
const venues = [
{
id: 1001,
name: 'Soccerdome Wien 10',
street: 'Kauerhof 4',
zip: 1110,
city: 'Wien',
latitude: 48,1624984741,
longitude: 16,3386001587,
createdAt: '2018-01-01 10:00',
courts: [
{
id: 2001,
name: 'Court 1',
},
{
id: 2002,
name: 'Court 2',
},
]
},
{
id: 1002,
name: 'LTM Tennis',
street: 'Brunnengasse 99',
zip: 1010,
city: 'Wien',
latitude: 48,2075004578,
longitude: 16,4281005859,
createdAt: '2018-01-05 10:00',
courts: [
{
id: 2005,
name: 'Court 1',
},
{
id: 2006,
name: 'Court 2',
},
{
id: 2007,
name: 'Court 3',
},
{
id: 2008,
name: 'Court 4',
},
{
id: 2009,
name: 'Court 5',
},
{
id: 2010,
name: 'Court 6',
},
]
},
{
id: 1003,
name: 'Yoga Studio',
street: 'Kellergasse 14',
zip: 1210,
city: 'Wien',
latitude: 48,2127990723,
longitude: 16,3701992035,
createdAt: '2018-07-01 10:00',
courts: []
},
]