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.
19 lines
344 B
19 lines
344 B
@page "/counter" |
|
@rendermode InteractiveServer |
|
|
|
<PageTitle>Counter</PageTitle> |
|
|
|
<h1>Counter</h1> |
|
|
|
<p role="status">Current count: @currentCount</p> |
|
|
|
<button class="btn btn-primary" @onclick="IncrementCount">Click me</button> |
|
|
|
@code { |
|
private int currentCount = 0; |
|
|
|
private void IncrementCount() |
|
{ |
|
currentCount++; |
|
} |
|
}
|
|
|