forked from jchuajy/todo-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
todosData.js
35 lines (33 loc) · 899 Bytes
/
todosData.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
const todosData = [
{
"task": "Eat Chicken Rice",
"done": true,
"created_at": "2019-08-11T16:06:11+08:00",
"updated_at": "2019-08-11T16:06:11+08:00"
},
{
"task": "Go swimming",
"done": true,
"created_at": "2019-08-22T16:08:11+08:00",
"updated_at": "2019-08-22T16:08:11+08:00"
},
{
"task": "Play Mario Kart",
"done": false,
"created_at": "2019-08-25T16:06:11+08:00",
"updated_at": "2019-08-25T16:06:11+08:00"
},
{
"task": "Sing Karaoke",
"done": true,
"created_at": "2019-08-26T16:08:11+08:00",
"updated_at": "2019-08-26T16:08:11+08:00"
},
{
"task": "Do homework",
"done": false,
"created_at": "2019-09-01T06:55:11+08:00",
"updated_at": "2019-09-01T06:55:11+08:00"
},
]
// export default todosData