mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-02-04 05:35:44 +00:00
13 lines
272 B
Plaintext
13 lines
272 B
Plaintext
@inherits RadzenComponentWithChildren
|
|
|
|
<CascadingValue Value="@Template">
|
|
@if (Visible)
|
|
{
|
|
<div class="@GetCssClass()" style="@Style" @attributes="@Attributes" id="@GetId()">
|
|
@if (ChildContent != null)
|
|
{
|
|
@ChildContent
|
|
}
|
|
</div>
|
|
}
|
|
</CascadingValue> |