You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
359 B

2 years ago
@page "/counter"
@using BlazorStateApp.Data;
@inject CounterState _counterState;
<PageTitle>Counter</PageTitle>
<h1>Counter</h1>
<p role="status">Current count: @_counterState.Count</p>
<button class="btn btn-primary" @onclick="IncrementCount">Click me</button>
@code {
private void IncrementCount()
{
_counterState.Count++;
}
}