Iceshrimp.NET/Iceshrimp.Frontend/Pages/SearchPage.razor

20 lines
No EOL
488 B
Text

@page "/search"
@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.MagnifyingGlass"></Icon>
@Loc["Search"]
</SectionContent>
<SearchComponent />
@code {
}