Files
qbtmud/Lantean.QBTMud/Components/UI/NonRendering.razor.cs
2024-10-22 09:57:50 +01:00

16 lines
441 B
C#

using Microsoft.AspNetCore.Components;
namespace Lantean.QBTMud.Components.UI
{
/// <summary>
/// A simple razor wrapper that only renders the child content without any additonal html markup
/// </summary>
public partial class NonRendering
{
/// <summary>
/// The child content to be rendered
/// </summary>
[Parameter]
public RenderFragment? ChildContent { get; set; }
}
}