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