In this chapter, we'll leverage the power of React to build a products page for the GoMusic store. The GoMusic store is the main full stack project that we'll be building throughout this book, and it is basically an online store of musical instruments. The frontend will be built with React, whereas the backend will be built with Go.
Here is the product page we're building today:
We'll follow a step-by-step approach to building this page. This web page will not be ordinary. We'll make use of the powerful React development tools to update this page in real time whenever we make a change. To further demonstrate the capabilities of React and its tools, the web page will rely on a JSON file, which will contain information about the images, the names, the prices, and the descriptions of the musical instruments we are trying to sell. Whenever...