@page "/"
<h1>Counter</h1>
<p>Current count: @currentCount</p>
<button class="btn btn-primary" @onclick="@IncrementCount">Click me</button>
<h1>
@try
{
@:@((0 / (5 - currentCount)).ToString())
}
catch (Exception ex)
{
@:@ex.Message;
}
</h1>
@code
{
int currentCount = 0;
void IncrementCount()
{
currentCount++;
}
}