@namespace Wabbajack.App.Blazor.Components
@if (Supertitle != string.Empty) { @Supertitle } @Title @Subtitle @Comment @Description
@code { [Parameter] public string Supertitle { get; set; } = string.Empty; [Parameter] public string Title { get; set; } [Parameter] public string Subtitle { get; set; } [Parameter] public string Comment { get; set; } [Parameter] public string Description { get; set; } }