Search⌘ K
AI Features

Examining the Shared Razor Components

Learn how shared Razor components such as MainLayout, NavMenu, and SurveyPrompt structure a Blazor WebAssembly app. Understand layout inheritance, navigation with NavLink components, and integrating styled components using Bootstrap. This lesson helps you grasp essential components for building and managing UI in Blazor projects.

The shared Razor components are in the Shared folder. There are three shared Razor components in the Demo project:

  • The MainLayout component
  • The NavMenu component
  • The SurveyPrompt component

The MainLayout component

The MainLayout component is used to define the page layout for ...