We’ll use the following tools in this chapter:
- Visual Studio Code: We'll use this to edit our React code. This can be downloaded and installed from https://code.visualstudio.com/.
- Node.js and npm: These can be downloaded from https://nodejs.org/. If you already have these installed, make sure that Node.js is at least version 8.2 and that npm is at least version 5.2
- Babel REPL: We'll use this online tool briefly to explore JSX. This can be found at https://babeljs.io/repl.
- Zondicons: We'll use one of these icons in our app. The icon we'll be using can be downloaded from https://www.zondicons.com/.
- Q&A: We'll start with the Q&A frontend project we finished in Chapter 2, Creating Decoupled React and ASP.NET Core Apps. This is available on GitHub at https://github.com/PacktPublishing/ASP.NET-Core-3-and-React-17.
All...