medium
+20 XP
FRONTEND

Todo List

Build a todo list with add, toggle complete, and delete functionality.
You're exploring as a guest. Create a free account to save progress and submit solutions.
import { useState } from 'react';

export default function TodoApp() {
  // Build a todo app
}