Initial Project

This commit is contained in:
6d486f49
2026-05-19 11:43:21 -04:00
commit f7b30374da
70 changed files with 60480 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
@page "/counter"
@rendermode InteractiveWebAssembly
<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++;
}
}