Add project files.

This commit is contained in:
2020-09-28 21:48:44 +02:00
parent 566990d7f7
commit 033d4c181d
32 changed files with 1381 additions and 0 deletions

View File

@ -0,0 +1,16 @@
@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++;
}
}