October 2019
Intermediate to advanced
426 pages
11h 49m
English
After storing the todos in our store, we can get them from the store, and then we can list all of the todo items in the TodoList component.
Let's connect the TodoList component now:
import { inject, observer } from 'mobx-react'
export default inject('todoStore')(observer(function TodoList ({ todoStore }) {
Read now
Unlock full access