Examining the Shared Razor Components
Learn the basics of the MainLayout, NavMenu, and SurveyPrompt components of Blazor WebAssembly.
We'll cover the following...
The shared Razor components are in the Shared folder. There are three shared Razor components in the Demo project:
- The
MainLayoutcomponent - The
NavMenucomponent - The
SurveyPromptcomponent
The MainLayout component
The MainLayout component is used to define the page layout for ...
Ask