QA
Dashboard

Practice Challenges

1. React Todo List (CRUD)

Hooks & State

Implement a reducer for a Todo list. Handle 'ADD', 'TOGGLE', 'UPDATE_TEXT', and 'DELETE' actions. State is an array of objects: { id, text, completed }.

Loading...