Files
Shogi/Shogi.UI/Shared/Stretch.razor
2024-11-01 18:42:35 -05:00

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!;
}