Fixed web rendering issues

This commit is contained in:
2025-04-23 11:55:46 +03:00
parent 2d319f3d34
commit 0493dfaeb4
7 changed files with 99 additions and 43 deletions

View File

@@ -4,4 +4,16 @@
<h1>Hello, world!</h1>
Welcome to your new app.
<button type="button" class="btn" @onclick="() => ClickTest(2)">Name</button>
Welcome to your new app.
@code {
private void ClickTest(int i)
{
Console.WriteLine($"Clicked {i}");
}
}