AI Features

Understanding How the Single Page Is Served

Learn how the single page is served.

Understanding the structure of index.html in React app

We know that the single page that hosts the React app is index.html, so let’s examine this file. This file can be found in the public folder of the ClientApp folder. The React app will be injected into the div tag, which has an id of root:

<div id="root"></div>

Let’s run our app again in Visual Studio to confirm that this is the case by pressing ...