A quick note about this video. It will show you how to use the **npm start** command
to start your React app. The terminal will run the app, and then open a browser window
so that you can see your app. If, for some reason, you stop the app in the terminal. Then
you'll need to restart it in order to see it in the browser (simply rerun the **npm start** command)
Follow Up Questions
Which NPM package did we install so that we could create React projects?
What command did we run in order to create the react-games project?
What command do you run to launch your React project in the browser?
What is the ID of the DIV element that contains our React app?
What is the name of the file that contains the code for the root component in our project?
Explain what the code in index.js does.
What does a React component function return?
T/F - Component functions must return a single element.
What is a fragment in JSX?
What is the name of the main style sheet file for a React project?