-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.js
More file actions
executable file
·95 lines (93 loc) · 2.31 KB
/
data.js
File metadata and controls
executable file
·95 lines (93 loc) · 2.31 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
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
const data = [
{
$type: 'n_type_person',
id: 'person001',
first_name: 'John',
last_name: 'Tritt',
title: "VP Special Projects at Indiana Sugars",
},
{
$type: 'n_type_person',
id: 'person002',
first_name: 'Alex',
last_name: 'Lysenka',
title: "Software Engineer"
},
{
$type: 'n_type_person',
id: 'person003',
first_name: 'Gregory',
last_name: 'Cannizzaro',
title: "C.A. Fortune - South Division Brand Manager - LA/MS/AL Gulf Coast Roller Coaster League"
},
{
$type: 'n_type_person',
id: 'person004',
first_name: 'Mark',
last_name: 'Brittain',
title: "Vice President of Grocery / Partner at Premier Concepts, LLC",
},
{
$type: 'n_type_person',
id: 'person005',
first_name: 'James D',
nickname: "Jake",
last_name: 'Geleerd',
title: "Executive"
},
{
$type: 'n_type_story',
id: 'story001',
category: 'Sports',
headline: 'Bombers look to keep rolling after bye week',
date: '2016-10-28 05:33 PM',
sundayPlus: true,
pictureURI: 'image1.png',
},
{
$type: 'n_type_story',
id: 'story002',
category: 'News',
headline: 'Cops identify victim butchered and dumped in Langley, B.C.',
date: '2016-10-29 07:10 AM',
sundayPlus: false,
pictureURI: 'image2.png',
},
{
$type: 'n_type_story',
id: 'story003',
category: 'Entertainment',
headline: "Hacker who stole celebrities' nude photos, videos jailed",
date: '2016-10-28 04:27 PM',
sundayPlus: true,
pictureURI: 'image3.png',
},
{
$type: 'n_type_story',
id: 'story004',
category: 'Sports',
headline: "Actor Bill Muraray sings 'Take Me Out To The Ball Game' at World Seres",
date: '2016-10-29 12:44 AM',
sundayPlus: false,
pictureURI: 'image4.png',
},
{
$type: 'n_type_story',
id: 'story005',
category: 'Sports',
headline: 'Cubs miss opportunity, drop nail-biter to Indians in first World Series game at Wrigley Field in 71 years',
date: '2016-10-28 12:31 AM',
sundayPlus: true,
pictureURI: 'image5.png',
},
{
$type: 'n_type_story',
id: 'story006',
category: 'Sports',
headline: 'Bisons need boost to make playoffs',
date: '2016-10-28 11:54 PM',
sundayPlus: true,
pictureURI: 'image6.png',
}
];
export default data;