October 2019
Intermediate to advanced
426 pages
11h 49m
English
First, we are going to implement a Selector Hook to get all todos for the TodoList component, as follows:
import { useSelector } from 'react-redux'
export default function TodoList () {
const filter = useSelector(state => state.filter) const todos = useSelector(state => state.todos)
Read now
Unlock full access