using System; using Microsoft.AspNetCore.Components; namespace BlazorT.Composants { public partial class ShowItems { [Parameter] public List Items { get; set; } [Parameter] public RenderFragment ShowTemplate { get; set; } } }