Empty admin project

This commit is contained in:
Khwezi Mngoma
2026-05-16 01:22:17 +02:00
parent ee3dc075ef
commit 0cc5b8935d
30 changed files with 1383 additions and 2 deletions
+19
View File
@@ -0,0 +1,19 @@
@page "/counter"
@rendermode InteractiveServer
<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++;
}
}