Fix proj move

This commit is contained in:
Samuele Locatelli
2025-07-18 08:57:38 +02:00
parent 5c2443598e
commit 026897d9e1
36 changed files with 0 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
@page "/counter"
@rendermode InteractiveAuto
<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++;
}
}