Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 1.16 KB

README.md

File metadata and controls

23 lines (17 loc) · 1.16 KB

alt text React TODO application

Create a TODO list application that allows users to add and delete tasks.

📝 Instructions

  • You app needs to look like this.
  • The tasks are added when the user press enter on the keyboard or you can have your own button.
  • The delete icon shows only when the task is hovered.
  • The use can add as many tasks as it wants.
  • When there is no tasks the list should "No tasks, add a task"
  • There is no way to update a task, the user will ahve to delete and create again.

💡 Tips to finish this project

Do not go straight to the code, think first and have a viable trategy.

  • What components will you create? Draw the project on a white paper and identify components.
  • Where are the stasks going to be stored in your component?
  • Read about controlled components inputs in react.js, you will need to understand the concept.