añade inicio del back

This commit is contained in:
2025-08-07 13:36:31 +02:00
parent dc68641cfe
commit 9b373d1929
83 changed files with 63060 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
@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++;
}
}