24 lines
611 B
Plaintext
24 lines
611 B
Plaintext
@page "/counter"
|
|
|
|
<h1>Counter</h1>
|
|
|
|
<p role="status">Current count: @currentCount</p>
|
|
|
|
<button class="btn btn-primary" @onclick="IncrementCount">Click me</button>
|
|
|
|
@code {
|
|
private int currentCount = 0;
|
|
|
|
private void IncrementCount()
|
|
{
|
|
currentCount++;
|
|
}
|
|
}
|
|
|
|
<Card Style="width:18rem;">
|
|
<CardBody>
|
|
<CardTitle>Card title</CardTitle>
|
|
<CardText>Some quick example text to build on the card title and make up the bulk of the card's content.</CardText>
|
|
<Button Color="ButtonColor.Primary" To="#" Type="ButtonType.Link">Go somewhere</Button>
|
|
</CardBody>
|
|
</Card> |