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.
21 lines
461 B
21 lines
461 B
@page "/counter"
|
|
@rendermode InteractiveServer
|
|
|
|
<PageTitle>Counter</PageTitle>
|
|
|
|
<h1>Counter</h1>
|
|
|
|
<div role="status" style="padding-bottom: 1em;">
|
|
Current count: <FluentBadge Appearance="Appearance.Neutral">@currentCount</FluentBadge>
|
|
</div>
|
|
|
|
<FluentButton Appearance="Appearance.Accent" @onclick="IncrementCount">Click me</FluentButton>
|
|
|
|
@code {
|
|
private int currentCount = 0;
|
|
|
|
private void IncrementCount()
|
|
{
|
|
currentCount++;
|
|
}
|
|
}
|
|
|