1
0
mirror of https://github.com/chylex/Minecraft-Phantom-Panel.git synced 2024-10-17 03:42:50 +02:00
Minecraft-Phantom-Panel/Web/Phantom.Web.Components/Forms/FormValidationMessage.razor

12 lines
199 B
Plaintext

@using System.Linq.Expressions
@typeparam TValue
<ValidationMessage For="@For" class="invalid-feedback d-block" />
@code {
[Parameter]
public Expression<Func<TValue>>? For { get; set; }
}