generated from wednesday-solutions/react-template
-
Notifications
You must be signed in to change notification settings - Fork 13
/
mockData.js
112 lines (112 loc) · 2.89 KB
/
mockData.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
export const LAUNCHES = [
{
id: '1',
missionName: 'Thaicom 6',
links: {
flickrImages: ['image1', 'image2'],
wikipedia: 'https://en.wikipedia.org/wiki/Thaicom_6'
},
launchDateUtc: '2014-01-06T14:06:00-04:00',
launchDateUnix: 1389031560
},
{
id: '1',
missionName: 'AsiaSat 6',
links: {
flickrImages: ['image1', 'image2'],
wikipedia: 'https://en.wikipedia.org/wiki/AsiaSat_6'
},
launchDateUtc: '2014-09-07T01:00:00-04:00',
launchDateUnix: 1410066000
},
{
id: '1',
missionName: 'OG-2 Mission 2',
links: {
flickrImages: ['image1', 'image2'],
wikipedia: 'https://en.wikipedia.org/wiki/Falcon_9_flight_20'
},
launchDateUtc: '2015-12-22T21:29:00-04:00',
launchDateUnix: 1450747740
},
{
id: '1',
missionName: 'FalconSat',
links: {
flickrImages: ['image1', 'image2'],
wikipedia: 'https://en.wikipedia.org/wiki/DemoSat'
},
launchDateUtc: '2006-03-25T10:30:00+12:00',
launchDateUnix: 1143239400
},
{
id: '1',
missionName: 'CRS-1',
links: {
flickrImages: ['image1', 'image2'],
wikipedia: 'https://en.wikipedia.org/wiki/SpaceX_CRS-1'
},
launchDateUtc: '2012-10-08T20:35:00-04:00',
launchDateUnix: 1349656500
},
{
id: '1',
missionName: 'CASSIOPE',
links: {
flickrImages: ['image1', 'image2'],
wikipedia: 'https://en.wikipedia.org/wiki/CASSIOPE'
},
launchDateUtc: '2013-09-29T09:00:00-07:00',
launchDateUnix: 1380470400
},
{
id: '1',
missionName: 'ABS-3A / Eutelsat 115W B',
links: {
flickrImages: ['image1', 'image2'],
wikipedia: 'https://en.wikipedia.org/wiki/ABS-3A'
},
launchDateUtc: '2015-03-02T23:50:00-04:00',
launchDateUnix: 1425268200
},
{
id: '1',
missionName: 'COTS 1',
links: {
flickrImages: ['image1', 'image2'],
wikipedia: 'https://en.wikipedia.org/wiki/SpaceX_COTS_Demo_Flight_1'
},
launchDateUtc: '2010-12-08T11:43:00-04:00',
launchDateUnix: 1291822980
},
{
id: '1',
missionName: 'TürkmenÄlem 52°E / MonacoSAT',
links: {
flickrImages: ['image1', 'image2'],
wikipedia: 'https://en.wikipedia.org/wiki/T%C3%BCrkmen%C3%84lem_52%C2%B0E_/_MonacoSAT'
},
launchDateUtc: '2015-04-27T19:03:00-04:00',
launchDateUnix: 1430175780
},
{
id: '1',
missionName: 'CRS-11',
links: {
flickrImages: ['image1', 'image2'],
wikipedia: 'https://en.wikipedia.org/wiki/SpaceX_CRS-11'
},
launchDateUtc: '2017-06-03T17:07:00-04:00',
launchDateUnix: 1496524020
},
{
id: '1',
missionName: 'Iridium NEXT Mission 1',
links: {
flickrImages: ['image1', 'image2'],
wikipedia: 'https://en.wikipedia.org/wiki/Iridium_satellite_constellation#Next-generation_constellation'
},
launchDateUtc: '2017-01-14T10:54:00-07:00',
launchDateUnix: 1484416440
}
];