mirror of
https://github.com/PacktPublishing/Web-Development-with-Blazor-Second-Edition.git
synced 2026-01-02 22:39:56 +01:00
3 lines
129 B
Plaintext
3 lines
129 B
Plaintext
@page "/ThrowException"
|
|
<button @onclick="@(()=> {throw new Exception("Something is broken"); })">Throw an exception</button>
|