@page "/counter" @using Microsoft.AspNetCore.Blazor

Counter

Current count: @currentCount

@functions { int currentCount = 0; void IncrementCount(UIMouseEventArgs e) { currentCount++; } }