initial commit

This commit is contained in:
Ikatono
2026-06-21 18:15:16 -05:00
commit ae41d1a273
126 changed files with 69109 additions and 0 deletions

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++;
}
}