Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gabepalhares/react-todo-list
To-do app made with React.js to learn and practice React concepts
https://github.com/gabepalhares/react-todo-list
react todolist
Last synced: 21 days ago
JSON representation
To-do app made with React.js to learn and practice React concepts
- Host: GitHub
- URL: https://github.com/gabepalhares/react-todo-list
- Owner: gabepalhares
- Created: 2024-03-12T14:03:36.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-03-12T19:06:06.000Z (11 months ago)
- Last Synced: 2024-11-11T09:17:06.257Z (3 months ago)
- Topics: react, todolist
- Language: TypeScript
- Homepage:
- Size: 95.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# React To-Do List
In this challenge, I developed a task management application in the to-do list style, which included the following features:
- Added a new task
- Marked and unmarked a task as completed
- Removed a task from the listing
- Displayed the progress of task completionAlthough the functionalities were few, I needed to revisit concepts such as:
- States
- State immutability
- Lists and keys in ReactJS
- Properties
- ComponentizationTo complete this challenge, I had to research methods for array manipulation such as `map`, `filter`, and even `reduce`.