Last active
August 29, 2020 23:01
-
-
Save csorlandi/b6a021f674dc42cc7cdf1124bf184c38 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function handleTaskSelected(id) { | |
setTodoList( | |
todoList.map(todo => ({ | |
...todo, | |
checked: todo.id === id ? !todo.checked : todo.checked, | |
}) | |
); | |
} | |
<input type="checkbox" onChange={() => handleTaskSelected(todo.id)} className={`${todo.checked && 'checked'}`} /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment