TodoList Component

In this lesson, we develop a component to display the list of ToDo items.

We'll cover the following...

TodoList #

Here is the code for listing ToDo items.

import React from 'react';
import { useDispatch, useTrackedState } from './store';

import TodoItem from './TodoItem';
import NewTodo from './NewTodo';

const TodoList
...