-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsandbox-seed.js
27 lines (25 loc) · 889 Bytes
/
sandbox-seed.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
// seed-data.js
module.exports = {
talks: [
{
id: 'foo',
title: 'Hong Kong Open Source Conference 2018',
date: 'Sunday, September 2, 2018',
time: '2:00 PM 3:00 PM',
description: `I'm was super excited for this conference as it was two firsts for me:
First time in Asia
First time keynoting a conference
I did a separate blog post on this conference and my short time in Hong Kong which you can read over here.`
},
{
id: 'bar',
title: 'Adobe Immerse 2018',
date: 'Sunday, September 2, 2018',
time: '2:00 PM 3:00 PM',
description: `I'm was super excited for this conference as it was two firsts for me:
First time in Asia
First time keynoting a conference
I did a separate blog post on this conference and my short time in Hong Kong which you can read over here.`
},
]
}