Neighbourhood.omg.lol/Components/Layout/MainLayout.razor

17 lines
408 B
Text
Raw Normal View History

2024-05-30 01:06:08 +00:00
@inherits LayoutComponentBase
@inject NavigatorService NavigatorService
@inject NavigationManager NavigationManager
@inject State State
<link rel="stylesheet" href="vendor/fluent-emoji/animated.css" />
<NavMenu />
<main class="responsive max">
@Body
</main>
@code {
protected override void OnInitialized() {
base.OnInitialized();
NavigatorService.NavigationManager = NavigationManager;
}
}