Agent Catalog and Maui Test

This commit is contained in:
2026-06-08 20:23:23 -04:00
parent 7310e4ed71
commit e9d60e3983
50 changed files with 2637 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
@page "/counter"
<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++;
}
}