aspnetcore/test/testapps/BasicTestApp/CounterComponent.cshtml

8 lines
153 B
Plaintext

<h1>Counter</h1>
<p>Current count: @currentCount</p>
<button onclick=@{ currentCount++; }>Click me</button>
@functions {
int currentCount = 0;
}