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