Add project files.

This commit is contained in:
monge
2026-06-21 14:27:42 +02:00
parent 37232bdf91
commit 4a10ef5237
67 changed files with 60406 additions and 0 deletions
+19
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++;
}
}