21 lines
No EOL
542 B
Text
21 lines
No EOL
542 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;
|
|
|
|
<HeadTitle Text="@Loc["Follow requests"]"/>
|
|
|
|
<SectionContent SectionName="top-bar">
|
|
<Icon Name="Icons.HandWaving"></Icon>
|
|
@Loc["Follow requests"]
|
|
</SectionContent>
|
|
|
|
<FollowRequestList/>
|
|
|
|
@code {
|
|
} |