This commit is contained in:
2024-11-01 18:42:35 -05:00
parent f681497561
commit d8432b98fe

View File

@@ -1,7 +1,10 @@
<div>
<div @attributes="@InputAttributes">
@ChildContent
</div>
@code {
[Parameter(CaptureUnmatchedValues = true)]
public Dictionary<string, object> InputAttributes { get; set; }
[Parameter] public RenderFragment ChildContent { get; set; } = default!;
}