Web-Development-with-Blazor.../Chapter15/CustomElements/RazorPagesProject/Views/Home/Index.cshtml

11 lines
273 B
Plaintext
Raw Permalink Normal View History

2023-02-17 15:28:17 +01:00

@{
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>