- ASP.NET Core 2 and Angular 5
- Valerio De Sanctis
- 61字
- 2025-04-04 17:58:00
The HomeComponent template
Now that our QuizListComponent is properly referenced in the AppModule, we can add it to the HomeComponent template file.
Open the /ClientApp/app/components/home/home.component.html file and add the single highlighted line:
<h1>Greetings, stranger!</h1>
<p>This is what you get for messing up with .NET Core and Angular.</p>
<quiz-list></quiz-list>
That's all we need to do here; Angular and WebPack will handle the rest.