Upgrade Supporters component to inherit MSGComponentBase.

This commit is contained in:
Thorsten Sommer 2025-04-17 12:00:10 +02:00
parent 8914e20a83
commit 6867393277
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108
2 changed files with 9 additions and 1 deletions

View File

@ -1,4 +1,5 @@
@attribute [Route(Routes.SUPPORTERS)]
@inherits MSGComponentBase
<div class="inner-scrolling-context">
<MudText Typo="Typo.h3" Class="mb-2">Supporters</MudText>

View File

@ -1,7 +1,14 @@
using AIStudio.Components;
using Microsoft.AspNetCore.Components;
namespace AIStudio.Pages;
public partial class Supporters : ComponentBase
public partial class Supporters : MSGComponentBase
{
#region Overrides of MSGComponentBase
public override string ComponentName => nameof(Supporters);
#endregion
}