Here, we have answered all of the questions asked at the end of each chapter. You can use these questions to review what you have learned throughout this book.
Answers
Chapter 1 – Understanding the ASP.NET Core React Template
- What is the entry point method in an ASP.NET Core app?
A method called Main in the Program class
- What is the single HTML page filename in an ASP.NET Core React app created by the template, and what folder is this located in?
A file called index.html, which is located in the public folder with the ClientApp folder
- What file are the React app dependencies defined in?
A file called package.json in the ClientApp folder
- What npm command will run the React app in the WebPack development server...