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