Created with create react app (CRA)
- give the main title an underline and a different font family
- how a message if there are no todos, in other words if the array
toDoListis empty - within each todo created, while in edit mode, give that input field () a class name and style it
- within each todo created, move the group of buttons all the way to the right (align right)
- move everything with
<div className="o-task-addition">into it's own new component, call itTaskAdder - on every todo item created, get the current date/time it was created and store it but don't show it
- save all data to local storage, so when you refresh the page it doesn't go away
- the clear all button should still clear all data even after you refresh the page >