-
Notifications
You must be signed in to change notification settings - Fork 0
/
demoData.js
34 lines (31 loc) · 824 Bytes
/
demoData.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
//DEMO EVENTS DATA
export const eventData = [
{
id: 1,
title: 'Board meeting',
location: 'Dhaka, Brazil',
start: new Date(2018, 9, 4, 9, 0, 0),
end: new Date(2018, 9, 4, 13, 0, 0)
},
{
id: 2,
title: 'Team lead meeting',
location: 'Rajshahi, Brazil',
start: new Date(2018, 9, 15, 9, 0, 0),
end: new Date(2018, 9, 15, 13, 0, 0)
},
{
id: 3,
title: 'Coxbazar Tour',
location: 'Coxbazar, Brazil',
start: new Date(2018, 9, 30, 8, 30, 0),
end: new Date(2018, 9, 30, 12, 30, 0)
},
{
id: 4,
title: "JoomShaper's Event",
location: 'Dhanmondi, Dhaka',
start: new Date(2018, 10, 2, 8, 30, 0),
end: new Date(2018, 10, 2, 12, 30, 0)
}
];