mirror of
https://github.com/lantean-code/qbtmud.git
synced 2025-10-22 20:42:24 +00:00
17 lines
444 B
C#
17 lines
444 B
C#
using Microsoft.AspNetCore.Components;
|
|
|
|
namespace Lantean.QBTMudBlade.Components
|
|
{
|
|
/// <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; }
|
|
}
|
|
}
|