- Create a todo task with title and description.
- Read all todo tasks and display details(title, description and status)
- Select one todo task and update title, description or the status of task(finished/unfinished).
- Delete a selected task.
[
{
"id": 1,
"title": "Meal Prep",
"description": "Finish cutting vegetables and plan out meals for all weekdays",
"completed": false
},
{
"id": 2,
"title": "Laundry",
"description": "Finish laundry and fold clothes",
"completed": false
},
{
"id": 3,
"title": "Run Roomba",
"description": "Schedule roomba",
"completed": false
},
{
"id": 4,
"title": "Kids' summer camp",
"description": "Enroll kids in summer camp",
"completed": false
}
]