11 lines
257 B
Plaintext
11 lines
257 B
Plaintext
<div @attributes="@InputAttributes">
|
|
@ChildContent
|
|
</div>
|
|
|
|
@code {
|
|
[Parameter(CaptureUnmatchedValues = true)]
|
|
public Dictionary<string, object> InputAttributes { get; set; }
|
|
|
|
[Parameter] public RenderFragment ChildContent { get; set; } = default!;
|
|
}
|