2.0.0
Release Docker Image / build-and-push (release) Failing after 5s
Release NuGet Packages / pack-and-push (release) Successful in 46s

This commit is contained in:
2026-05-20 16:36:00 +03:30
parent e7879558df
commit efeebd85da
35 changed files with 372 additions and 144 deletions
@@ -0,0 +1,19 @@
@page "/counter"
@rendermode InteractiveAuto
<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++;
}
}