16 lines
408 B
Text
16 lines
408 B
Text
@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;
|
|
}
|
|
}
|