14 lines
285 B
Plaintext
14 lines
285 B
Plaintext
@page "/counter"
|
|
|
|
@using Microsoft.AspNetCore.Components.Web
|
|
|
|
@namespace OI.Metrology.View.Pages
|
|
|
|
<PageTitle>Counter</PageTitle>
|
|
|
|
<h1>Counter - Bye</h1>
|
|
|
|
<p role="status">Current count: @_CurrentCount</p>
|
|
|
|
<button class="btn btn-primary" @onclick="IncrementCount">Click me</button>
|