medium
+20 XP
FRONTEND

useReducer Todo

Rebuild the todo list using useReducer instead of useState.
You're exploring as a guest. Create a free account to save progress and submit solutions.
import { useReducer } from 'react';

function todoReducer(state, action) {
  // Your reducer
}

export default function TodoApp() {
  // Use useReducer for todo state
}