Web-Development-with-Blazor.../Chapter05/MyBlog/Components/Pages/ErrorBoundaryTest.razor
2023-02-17 15:28:17 +01:00

14 lines
256 B
Plaintext

@page "/errorboundarytest"
<ErrorBoundary Context=ex>
<ChildContent>
<p>@(1/zero)</p>
</ChildContent>
<ErrorContent>
An error occured
@ex.Message
</ErrorContent>
</ErrorBoundary>
@code {
int zero = 0;
}