Iceshrimp.NET/Iceshrimp.Frontend/Pages/FollowRequestsPage.razor

19 lines
No EOL
502 B
Text

@page "/follow-requests"
@attribute [Authorize]
@using Iceshrimp.Frontend.Components
@using Iceshrimp.Frontend.Localization
@using Microsoft.Extensions.Localization
@using Microsoft.AspNetCore.Components.Sections
@using Iceshrimp.Assets.PhosphorIcons
@using Microsoft.AspNetCore.Authorization
@inject IStringLocalizer<Localization> Loc;
<SectionContent SectionName="top-bar">
<Icon Name="Icons.HandWaving"></Icon>
@Loc["Follow requests"]
</SectionContent>
<FollowRequestList />
@code {
}