mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-07-28 19:02:57 +00:00
15 lines
472 B
C#
15 lines
472 B
C#
|
using Microsoft.AspNetCore.Components;
|
||
|
using Microsoft.AspNetCore.Components.Rendering;
|
||
|
|
||
|
namespace AIStudio.Components;
|
||
|
|
||
|
public abstract class ConfigurationBaseCore : ConfigurationBase
|
||
|
{
|
||
|
private protected sealed override RenderFragment Body => this.BuildRenderTree;
|
||
|
|
||
|
// Allow content to be provided by a .razor file but without
|
||
|
// overriding the content of the base class
|
||
|
protected new virtual void BuildRenderTree(RenderTreeBuilder builder)
|
||
|
{
|
||
|
}
|
||
|
}
|