...

/

App Component and File Structure

App Component and File Structure

In this lesson, we create an App component.

We'll cover the following...

App #

This is the root component that wraps the TodoList in the Provider.

// ./components/App.js

import React from 'react';

import { Provider } from './store';
import TodoList from
...