UI_SequentMicrosystems-RPI/Layout/MainLayout.razor

29 lines
307 B
Plaintext
Raw Normal View History

@using UI_SequentMicrosystems.Components
@inherits LayoutComponentBase
2023-12-16 07:59:53 +00:00
<div class="page maincolor">
<div>
<NavMenu />
</div>
<main>
<MainLayoutPointsTopBar />
2023-12-16 07:59:53 +00:00
<article class="content px-4">
@Body
</article>
</main>
</div>
@code{
}