-
Notifications
You must be signed in to change notification settings - Fork 1
/
mock-data.js
55 lines (54 loc) · 1.58 KB
/
mock-data.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
const todoList = {
todos: {
name: 'To-Do',
tasks: [
{
id: 11,
title: 'Read book History of humankind',
createdAt: 1563171826021,
description: 'Read this book idiot. It has been pending since long'
},
{
id: 12,
title: 'Do laundry',
createdAt: 1563171826021,
description: 'Clothes are dirty, please do laundry before they stink like hell'
},
{
id: 13,
title: 'Open Source Contributions',
createdAt: 1563171826021,
description: 'Make some contributions to tools like webpack, styled-components'
}
]
},
inProgress: {
name: 'In-Progress',
tasks: [
{
id: 21,
title: 'Learn swimming',
createdAt: 1563171826021,
description: 'Start learning swimming as there are a lot of things to do'
},
{
id: 22,
title: 'Learn driving',
createdAt: 1563171826021,
description: 'Apply for a temp driving license after it'
},
]
},
done: {
name: 'Done',
tasks: [
{
id: 31,
title: 'Talk to someone',
createdAt: 1563172097386,
description: 'Sometimes talking to human beings isn\'t that bad'
}
]
}
}
export default todoList