Iceshrimp.NET/Iceshrimp.Frontend/Pages/FollowRequestsPage.razor
2024-09-13 21:44:31 +02:00

19 lines
No EOL
497 B
Text

@page "/follow-requests"
@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;
<SectionContent SectionName="top-bar">
<Icon Name="Icons.HandWaving"></Icon>
@Loc["Follow requests"]
</SectionContent>
<FollowRequestList/>
@code {
}