17 lines
240 B
Plaintext
17 lines
240 B
Plaintext
<h1>Counter</h1>
|
|
|
|
<p>
|
|
Current count: @currentCount
|
|
</p>
|
|
|
|
<button class="btn btn-primary" @onclick="IncrementCount">Click me</button>
|
|
|
|
@code {
|
|
int currentCount = 0;
|
|
|
|
void IncrementCount()
|
|
{
|
|
currentCount++;
|
|
}
|
|
}
|