@using TP_Blazor.Models @typeparam TItem
@if ((Items?.Count ?? 0) != 0) { @foreach (var item in Items) { @ShowTemplate(item) } }