()
| 49 | } |
| 50 | |
| 51 | const handleAdd= ()=>{ |
| 52 | setTodos([...todos, {id: uuidv4(), todo, isCompleted: false}]) |
| 53 | setTodo("") |
| 54 | saveToLS() |
| 55 | } |
| 56 | |
| 57 | const handleChange= (e)=>{ |
| 58 | setTodo(e.target.value) |
nothing calls this directly
no test coverage detected