2022-01-22 22:26:20 +01:00

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>