Auth and error handling components

This commit is contained in:
2024-09-01 19:30:28 +03:00
parent 65876be551
commit 1f050a6fd4
9 changed files with 174 additions and 60 deletions

View File

@@ -0,0 +1,14 @@
<CascadingValue Value="this">
@ChildContent
</CascadingValue>
@code
{
[Parameter]
public RenderFragment? ChildContent { get; set; }
public void Handle(Exception ex)
{
}
}