App Component and File Structure
In this lesson, we develop and list all files.
We'll cover the following...
App #
import React from 'react';
import { Provider } from './store';
import TodoList from './TodoList';
const App = () => (
<Provider>
<TodoList />
...