@namespace Oqtane.Modules.Counter @inherits ModuleBase Current count: @currentCount


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