14 lines
391 B
Plaintext
14 lines
391 B
Plaintext
@page "/"
|
|
@page "/Counter"
|
|
|
|
@using Microsoft.AspNetCore.Components.Web
|
|
@using MudBlazor
|
|
|
|
@namespace Normalize.ClientHub.Pages
|
|
|
|
<PageTitle>Counter</PageTitle>
|
|
|
|
<MudText Typo="Typo.h3" GutterBottom="true">Counter</MudText>
|
|
<MudText Class="mb-4">Current count: @_CurrentCount</MudText>
|
|
<MudButton Color="Color.Primary" Variant="Variant.Filled" @onclick="IncrementCount">Click me</MudButton>
|