@if (IsTurn) { } @if (string.IsNullOrEmpty(Name)) { Empty Seat } else { @Name }

@code { [Parameter][EditorRequired] public bool IsTurn { get; set; } [Parameter][EditorRequired] public string Name { get; set; } = string.Empty; }