October 2019
Intermediate to advanced
426 pages
11h 49m
English
First of all, we are going to migrate the TodoFilterItem component. Let's start migrating the component now:
function TodoFilterItem ({ name, filterTodos, filter = 'all' }) {
function handleFilter () { filterTodos(name) }
const style = { color: 'blue', cursor: 'pointer', fontWeight: (filter === name) ? 'bold' : 'normal' ...Read now
Unlock full access