You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
398 B
18 lines
398 B
@page "/counter"
|
|
|
|
<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>
|
|
|
|
|
|
@code {
|
|
private int currentCount = 0;
|
|
|
|
private void IncrementCount()
|
|
{
|
|
currentCount++;
|
|
}
|
|
}
|