blazor
Installation
SKILL.md
Blazor Skill
Blazor WebAssembly frontend for VanDaemon running on .NET 10. Components live in src/Frontend/VanDaemon.Web/Pages/. Uses MudBlazor for Material Design UI and SignalR for real-time updates from the API.
Quick Start
Basic Page Component
@page "/tanks"
@inject HttpClient Http
@inject ILogger<Tanks> Logger
<PageTitle>Tanks</PageTitle>
<MudText Typo="Typo.h4">Tank Levels</MudText>
Related skills