blazor-mcp / Components /Pages /Counter.razor
Loresayer's picture
Preliminary copying into HF Docker Space of ''hello world'' Blazor web client
79f7e9a
raw
history blame contribute delete
344 Bytes
@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++;
}
}