Search⌘ K

The Structure of the React Hello World Application

Explore the structure of a React Hello World application created with create-react-app. Understand how the App component passes state as props and learn the challenge of refactoring this state management to Redux. This lesson prepares you to transition React state handling to Redux step by step.

We'll cover the following...

The React app we’ll be working with has been bootstrapped with create-react- app. Thus, the structure of the app is one you’re already used to.

You may grab the repo from Github if you want to follow along - which I recommend. Move into the “hello-redux” and run the application using:

npm start
...