This repository has been archived on 2025-05-14. You can view files and clone it, but cannot push or open issues or pull requests.

16 lines
283 B
Plaintext

@using Oqtane.Modules
@inherits ModuleBase
Current count: @currentCount
<br />
<button type="button" class="btn btn-primary" @onclick="@IncrementCount">Click me</button>
<br /><br />
@code {
int currentCount = 0;
void IncrementCount()
{
currentCount++;
}
}