mediumReact Native#5

useReducer for complex state

Prompt

Implement a todo list reducer for useReducer. Support actions: ADD_TODO, TOGGLE_TODO, REMOVE_TODO. Each todo has { id, text, completed }. ADD_TODO receives { text }, TOGGLE_TODO and REMOVE_TODO receive { id }. Unknown actions must return the state unchanged.

Hints

Solution

Your Code

10 min

Tests

Click Run to test your code