@using Microsoft.AspNetCore.Components.Web @using static Microsoft.AspNetCore.Components.Web.RenderMode @rendermode InteractiveServer @page "/test/page"

TestModPage

Chomp!

Counter Test

Current count: @count

@code { private int count = 0; private void IncrementCount() { count++; } }