@* Documentation for a single stack operation: name, what it does, and worked examples. *@
@Name
@if (Description is not null)
{
@Description
}
@ChildContent
@code {
[Parameter]
[EditorRequired]
public string Name { get; set; } = null!;
[Parameter]
public string? Description { get; set; }
/// Worked examples, as elements.
[Parameter]
public RenderFragment? ChildContent { get; set; }
}