Skip to content

Instantly share code, notes, and snippets.

@0x414c49
Created January 20, 2020 14:13
Show Gist options
  • Save 0x414c49/e5ff2501cd9bf575358daed1caf03e53 to your computer and use it in GitHub Desktop.
Save 0x414c49/e5ff2501cd9bf575358daed1caf03e53 to your computer and use it in GitHub Desktop.
Blazor Web Assembly Example
@page "/counter"
<h1>Counter</h1>
<p>Current count: @currentCount</p>
<button class="btn btn-primary" @onclick="IncrementCount">Click me</button>
@code {
private int currentCount = 0;
private void IncrementCount()
{
currentCount++;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment