Iceshrimp.NET/Iceshrimp.Frontend/Pages/TimelinePage.razor

16 lines
No EOL
404 B
Text

@page "/"
@using Iceshrimp.Frontend.Components
@using Microsoft.AspNetCore.Components.Sections
@using Iceshrimp.Assets.PhosphorIcons
@using Iceshrimp.Frontend.Localization
@using Microsoft.Extensions.Localization
@inject IStringLocalizer<Localization> Loc;
<SectionContent SectionName="top-bar">
<Icon Name="Icons.House"></Icon>
@Loc["Timeline"]
</SectionContent>
<TimelineComponent/>
@code {
}