@if (Errors.Count == 0)
{
@ChildContent
}
else
{
The following error@(Errors.Count == 1 ? "" : "s") occurred:
@foreach (var msg in Errors)
{
@msg
}
}
@code {
[Parameter]
public IList Errors { get; set; } = default!;
[Parameter]
public RenderFragment ChildContent { get; set; } = default!;
}