-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.json
49 lines (49 loc) · 1.12 KB
/
db.json
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
{
"tasks": [
{
"text": "Heatmap app",
"day": "2022-11-30",
"reminder": false,
"priority": "low",
"progress": "80",
"note": "Need to clean up code and abstract date formatting functions - 10/30/22",
"id": 1
},
{
"text": "Catlog app",
"day": "2022-10-27",
"reminder": false,
"priority": "high",
"progress": "100",
"note": "Need to move from Heroku to Railway! - 11/6/22",
"id": 2
},
{
"text": "Project Tracker App",
"day": "2022-11-20",
"reminder": false,
"priority": "medium",
"progress": "60",
"note": "Working on TaskDetails and EditTask - 10/28/22\nNeed to add sorting - 10/30/22",
"id": 3
},
{
"text": "Recipe App",
"day": "2022-12-31",
"reminder": true,
"priority": "high",
"progress": "30",
"note": "Reactify the app. ",
"id": 4
},
{
"text": "Testing app",
"day": "2022-11-05",
"reminder": false,
"priority": "low",
"progress": "10",
"note": "Testing date picker and moment.",
"id": 5
}
]
}