Neighbourhood.omg.lol/Components/Pages/Counter.razor

17 lines
282 B
Text
Raw Normal View History

2024-05-30 01:06:08 +00:00
@page "/counter"
<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++;
}
}