doc: finished ER-Model

This commit is contained in:
Henry Trumme
2025-04-17 19:04:26 +02:00
parent b9c734826a
commit 370edc17e9
19 changed files with 488 additions and 3686 deletions

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++;
}
}