NejBlazor/Parts/LayoutParts/Sixth.razor
2023-03-08 17:00:38 +01:00

10 lines
165 B
Plaintext

<div class="w-full lg:w-1/5 xl:w-1/6 lg:px-2 py-2 ">
@ChildContent
</div>
@code {
[Parameter]
public RenderFragment ChildContent { get; set; } = default!;
}