mirror of
https://github.com/PacktPublishing/Web-Development-with-Blazor-Second-Edition.git
synced 2025-12-06 05:32:03 +01:00
11 lines
273 B
Plaintext
11 lines
273 B
Plaintext
|
|
@{
|
|
Layout = "/Pages/shared/_Layout.cshtml";
|
|
ViewData["Title"] = "Home page";
|
|
}
|
|
|
|
<div class="text-center">
|
|
<h1 class="display-4">Welcome</h1>
|
|
<p>This is a test from a MVC controller</p>
|
|
</div>
|
|
<my-blazor-counter increment-amount="10"></my-blazor-counter> |