mirror of
https://github.com/lantean-code/qbtmud.git
synced 2025-10-23 04:52:22 +00:00
16 lines
443 B
C#
16 lines
443 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; }
|
|
}
|
|
} |