Files
2025-10-27 17:39:18 -04:00

12 lines
169 B
Plaintext

@if (ChildContent is not null)
{
<div class="products-list__item">
@ChildContent
</div>
}
@code {
[Parameter]
public RenderFragment? ChildContent { get; set; }
}