14 lines
438 B
Plaintext
14 lines
438 B
Plaintext
@page "/counter"
|
|
@inherits WebAssembly.PageComponents.CounterBase
|
|
|
|
<PageTitle>Counter</PageTitle>
|
|
|
|
<h1>Counter</h1>
|
|
|
|
<p role="status">Current count: @CurrentCount</p>
|
|
<p role="status">Runtime: @Stopwatch.Elapsed.ToString("G")</p>
|
|
|
|
|
|
<button class="btn btn-success" @onclick="Start">Start</button>
|
|
<button class="btn btn-danger" @onclick="Stop">Stop</button>
|
|
<button class="btn btn-secondary" @onclick="Reset">Reset</button> |