mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 23:29:06 +00:00
24 lines
540 B
Plaintext
24 lines
540 B
Plaintext
@inherits MSGComponentBase
|
|
|
|
<div class="@this.Classes" style="@this.Styles">
|
|
@if (this.HeaderContent is not null)
|
|
{
|
|
<div>
|
|
@this.HeaderContent
|
|
</div>
|
|
}
|
|
<div class="flex-auto overflow-auto">
|
|
@this.ChildContent
|
|
|
|
<div @ref="@this.AnchorAfterChildContent">
|
|
|
|
</div>
|
|
</div>
|
|
|
|
@if (this.FooterContent is not null)
|
|
{
|
|
<MudPaper Class="pa-3 border-solid border rounded-lg">
|
|
@this.FooterContent
|
|
</MudPaper>
|
|
}
|
|
</div> |