@using Microsoft.AspNetCore.Blazor

Counter

Current count: @currentCount

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