@namespace Wabbajack.App.Blazor.Components
@if (Supertitle is not null)
{
@Supertitle
}
@Title
@Subtitle
@Description
@code {
[Parameter]
public string? Supertitle { get; set; }
[Parameter]
public string? Title { get; set; }
[Parameter]
public string? Subtitle { get; set; }
[Parameter]
public string? Comment { get; set; }
[Parameter]
public string? Description { get; set; }
}