18 lines
No EOL
422 B
Text
18 lines
No EOL
422 B
Text
@page "/notifications"
|
|
@using Iceshrimp.Frontend.Components
|
|
@using Iceshrimp.Frontend.Localization
|
|
@using Microsoft.Extensions.Localization
|
|
@using Microsoft.AspNetCore.Components.Sections
|
|
@using Iceshrimp.Assets.PhosphorIcons
|
|
|
|
@inject IStringLocalizer<Localization> Loc;
|
|
|
|
<SectionContent SectionName="top-bar">
|
|
<Icon Name="Icons.Bell"></Icon>
|
|
@Loc["Notifications"]
|
|
</SectionContent>
|
|
|
|
<NotificationList/>
|
|
|
|
@code {
|
|
} |