CPF/CPF.Razor/Controls/ResponsivePanel.cs
2024-01-09 00:39:58 +08:00

14 lines
335 B
C#

using Microsoft.AspNetCore.Components;
using System;
using System.Collections.Generic;
using System.Text;
namespace CPF.Razor.Controls
{
public partial class ResponsivePanel
{
[Parameter] public RenderFragment ChildContent { get; set; }
protected override RenderFragment GetChild() => ChildContent;
}
}