Firest commit

This commit is contained in:
MaddoScientisto 2026-03-14 17:25:44 +01:00
commit 2d55f5e6f4
70 changed files with 60789 additions and 0 deletions

View file

@ -0,0 +1,18 @@
@page "/counter"
<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++;
}
}