bulletboards/ImageBoardServerApp/Shared/MainLayout.razor

23 lines
356 B
Text
Raw Normal View History

@inherits LayoutComponentBase
@inject AuthenticationStateProvider authStateProvider
@inject NavigationManager navManager
2023-01-18 12:56:24 +00:00
<PageTitle>BulletBoard</PageTitle>
<div class="page">
<div class="sidebar">
<NavMenu/>
</div>
<main>
<article class="content px-4">
@Body
</article>
</main>
</div>
@code
{
}