Add project files.

This commit is contained in:
2024-07-03 17:42:12 +01:00
parent 0b545a0953
commit 9830a2d849
46 changed files with 1228 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
@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++;
}
}