-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTeam.js
43 lines (43 loc) · 4.76 KB
/
Team.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
export const Team = [
{ id: 1, name: 'Arsenal', image: require('./img/arsenal.png'), location: 'London (Holloway)', stadium: 'Emirates Stadium',
capacity: 60704, manager: 'Unai Emery', captain: 'Pierre-Emerick Aubameyang', lat: 51.554929, lng: -0.108449 },
{ id: 2, name: 'Aston Villa', image: require('./img/aston-villa.png'), location: 'Birmingham', stadium: 'Villa Park',
capacity: 42785, manager: 'Dean Smith', captain: 'Jack Grealish', lat: 52.509131, lng: -1.884767 },
{ id: 3, name: 'Bournemouth', image: require('./img/bornemouth.png'), location: 'Bournemouth', stadium: 'Dean Court',
capacity: 11364, manager: 'Eddie Howe', captain: 'Simon Francis', lat: 50.735278, lng: -1.838290 },
{ id: 4, name: 'Brighton & Hove Albion', image: require('./img/brighton.png'), location: 'Brighton', stadium: 'Falmer Stadium',
capacity: 30666, manager: 'Graham Potter', captain: 'Lewis Dunk', lat: 50.861606, lng: -0.083716 },
{ id: 5, name: 'Burnley', image: require('./img/burnley.png'), location: 'Burnley', stadium: 'Turf Moor',
capacity: 21944, manager: 'Sean Dyche', captain: 'Ben Mee', lat: 53.789017, lng: -2.230187 },
{ id: 6, name: 'Chelsea', image: require('./img/chelsea.png'), location: 'London (Fulham)', stadium: 'Stamford Bridge',
capacity: 41631, manager: 'Frank Lampard', captain: 'César Azpilicueta', lat: 51.481696, lng: -0.190957 },
{ id: 7, name: 'Crystal Palace', image: require('./img/crystal-palace.png'), location: 'London (Selhurst)', stadium: 'Selhurst Park',
capacity: 26047, manager: 'Roy Hodgson', captain: 'Luka Milivojević', lat: 51.398281, lng: -0.085489 },
{ id: 8, name: 'Everton', image: require('./img/everton.png'), location: 'Liverpool (Walton)', stadium: 'Goodison Park',
capacity: 39221, manager: 'Marco Silva', captain: 'Séamus Coleman', lat: 53.438813, lng: -2.966331 },
{ id: 9, name: 'Leicester City', image: require('./img/leicester.png'), location: 'Leicester', stadium: 'King Power Stadium',
capacity: 32312, manager: 'Brendan Rodgers', captain: 'Wes Morgan', lat: 52.620399, lng: -1.142147 },
{ id: 10, name: 'Liverpool', image: require('./img/liverpool.png'), location: 'Liverpool (Anfield)', stadium: 'Anfield',
capacity: 54074, manager: 'Jürgen Klopp', captain: 'Jordan Henderson', lat: 53.430846, lng: -2.960844 },
{ id: 11, name: 'Manchester City', image: require('./img/manchester-city.png'), location: 'Manchester',
stadium: 'City of Manchester Stadium', capacity: 55017, manager: 'Pep Guardiola', captain: 'David Silva',
lat: 53.483176, lng: -2.200427 },
{ id: 12, name: 'Manchester United', image: require('./img/manchester-united.png'), location: 'Manchester', stadium: 'Old Trafford',
capacity: 74879, manager: 'Ole Gunnar Solskjær', captain: 'Ashley Young', lat: 53.463077, lng: -2.291334 },
{ id: 13, name: 'Newcastle United', image: require('./img/newcastle-united.png'), location: 'Newcastle', stadium: 'St James Park',
capacity: 52354, manager: 'Steve Bruce', captain: 'Jamaal Lascelles', lat: 54.975581, lng: -1.621661 },
{ id: 14, name: 'Norwich City', image: require('./img/norwich-city.png'), location: 'Norwich', stadium: 'Carrow Road',
capacity: 27244, manager: 'Daniel Farke', captain: 'Grant Hanley', lat: 52.622219, lng: 1.309328 },
{ id: 15, name: 'Sheffield United', image: require('./img/sheffield-united.png'), location: 'Sheffield', stadium: 'Bramall Lane',
capacity: 32702, manager: 'Chris Wilder', captain: 'Billy Sharp', lat: 53.370374, lng: -1.470880 },
{ id: 16, name: 'Southampton', image: require('./img/southampton.png'), location: 'Southampton', stadium: 'St Marys Stadium',
capacity: 32384, manager: 'Ralph Hasenhüttl', captain: 'Pierre-Emile Højbjerg', lat: 50.905860, lng: -1.390941 },
{ id: 17, name: 'Tottenham Hotspur', image: require('./img/tottenham-hotspur.png'), location: 'London (Tottenham)',
stadium: 'Tottenham Hotspur Stadium', capacity: 62214, manager: 'José Mourinho', captain: 'Hugo Lloris', lat: 51.604319, lng: -0.066381 },
{ id: 18, name: 'Watford', image: require('./img/watford.png'), location: 'Watford', stadium: 'Vicarage Road',
capacity: 20400, manager: 'Quique Sánchez Flores', captain: 'Troy Deeney', lat: 51.649959, lng: -0.401525 },
{ id: 19, name: 'West Ham United', image: require('./img/westham-united.png'), location: 'London (Stratford)', stadium: 'London Stadium',
capacity: 60000, manager: 'Manuel Pellegrini', captain: 'Mark Noble', lat: 51.538750, lng: -0.016625 },
{ id: 20, name: 'Wolverhampton Wanderers', image: require('./img/wolverhampton.png'), location: 'Wolverhampton',
stadium: 'Molineux Stadium', capacity: 32050, manager: 'Nuno Espírito Santo', captain: 'Conor Coady', lat: 52.590301, lng: -2.130418 }
];