Removed old web ui plugin

This commit is contained in:
2024-08-31 17:27:19 +03:00
parent f7ba5f94ff
commit 30e92b742c
26 changed files with 117 additions and 620 deletions

View File

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