- 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?
npm start
- What npm command builds the React app ready for production?
npm run build
- What is the method name in a React component class that renders the component?
render
- Have a look ...