mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
15 lines
241 B
Plaintext
15 lines
241 B
Plaintext
|
@page "/default"
|
||
|
|
||
|
<h3>Hello, world!</h3>
|
||
|
|
||
|
<p>The current count is <strong>@Counter</strong></p>
|
||
|
|
||
|
<button @onclick="IncrementCount">Increment</button>
|
||
|
|
||
|
@code {
|
||
|
int Counter = 0;
|
||
|
void IncrementCount()
|
||
|
{
|
||
|
Counter++;
|
||
|
}
|
||
|
}
|