The project that we'll create in this chapter builds upon an initial version that you can find on GitHub: https://github.com/PacktPublishing/React-Projects/tree/ch4-initial. The complete source code can also be found on GitHub: https://github.com/PacktPublishing/React-Projects/tree/ch4. Also, this project uses the publicly available Stack Overflow API to fill the application with data. This is done by fetching questions that are posted to Stack Overflow. More information about this API can be found at: https://api.stackexchange.com/docs/questions#order=desc&sort=hot&tagged=reactjs&filter=default&site=stackoverflow&run=true.
After downloading the initial project from GitHub, you need to move into the root directory for this project and run npm install. As this project is built on top of Create React App, running this command will install...