const handleAdd = (todo) => { const newTodos = [...todos]; newTodos.push(todo); setTodos(newTodos); }