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