October 2019
Intermediate to advanced
426 pages
11h 49m
English
Next, we are going to upgrade the TodoItem component, which will be a similar process to what we did with the TodoList component.
Let's use Hooks for the TodoItem component now:
import { inject, observer } from 'mobx-react'
import { useObserver } from 'mobx-react'import { useTodoStore } from './hooks'
export default function TodoItem ({ item }) {
Read now
Unlock full access