mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-04-28 10:59:46 +00:00
Upgrade Supporters component to inherit MSGComponentBase.
This commit is contained in:
parent
8914e20a83
commit
6867393277
@ -1,4 +1,5 @@
|
|||||||
@attribute [Route(Routes.SUPPORTERS)]
|
@attribute [Route(Routes.SUPPORTERS)]
|
||||||
|
@inherits MSGComponentBase
|
||||||
|
|
||||||
<div class="inner-scrolling-context">
|
<div class="inner-scrolling-context">
|
||||||
<MudText Typo="Typo.h3" Class="mb-2">Supporters</MudText>
|
<MudText Typo="Typo.h3" Class="mb-2">Supporters</MudText>
|
||||||
|
@ -1,7 +1,14 @@
|
|||||||
|
using AIStudio.Components;
|
||||||
|
|
||||||
using Microsoft.AspNetCore.Components;
|
using Microsoft.AspNetCore.Components;
|
||||||
|
|
||||||
namespace AIStudio.Pages;
|
namespace AIStudio.Pages;
|
||||||
|
|
||||||
public partial class Supporters : ComponentBase
|
public partial class Supporters : MSGComponentBase
|
||||||
{
|
{
|
||||||
|
#region Overrides of MSGComponentBase
|
||||||
|
|
||||||
|
public override string ComponentName => nameof(Supporters);
|
||||||
|
|
||||||
|
#endregion
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user