Skip to content

Instantly share code, notes, and snippets.

@huanlin
Created December 16, 2022 08:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save huanlin/488bf4955dcefb9d6a1daf68f23abada to your computer and use it in GitHub Desktop.
Save huanlin/488bf4955dcefb9d6a1daf68f23abada to your computer and use it in GitHub Desktop.
Blazor app MainLayout.razor
@inherits LayoutComponentBase
<div class="page">
<div class="sidebar">
<NavMenu />
</div>
<main>
<div class="top-row px-4">
<a href="https://docs.microsoft.com/aspnet/" target="_blank">About</a>
</div>
<article class="content px-4">
@Body
</article>
</main>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment