October 2019
Intermediate to advanced
426 pages
11h 49m
English
Now, we are going to upgrade the TodoItem component to use Hooks. Let's migrate it now:
import { useDispatch } from 'react-redux'
import { toggleTodo, removeTodo } from '../actions'
export default function TodoItem ({ title, completed, id }) {
const dispatch = useDispatch()
Read now
Unlock full access