@page "/"
<h1>Counter</h1>
<p>Current count: @currentCount</p>
<button class="btn btn-primary" @onclick="IncrementCount">Click me</button>
<input type="number"
step="0.01"
class="rounded no-spinner p-2 text-right w-full"
@bind="currentCount" />
@functions {
decimal currentCount = 0.0001m;
void IncrementCount()
{
currentCount = currentCount + 1.2m;
}
}