ant-design-blazor/components/radio/RadioGroup.razor
TimChen f537cee4b5 feat: radio supports generics (#246)
* feat: radio supports generics

* fix: code format

* feat: radio supports form

* fix: radio button style

Co-authored-by: ElderJames <shunjiey@hotmail.com>
2020-06-29 23:19:25 +08:00

10 lines
233 B
C#

@namespace AntDesign
@typeparam TValue
@inherits AntInputComponentBase<TValue>
<CascadingValue Value="this">
<div class="@ClassMapper.Class" style="@Style" id="@Id" @ref="Ref">
@ChildContent
</div>
</CascadingValue>