Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 804 Bytes

File metadata and controls

23 lines (17 loc) · 804 Bytes

Shared Directory

This directory contains shared Blazor components used throughout the application.

Purpose

Store components that provide application-wide functionality:

  • MainLayout.razor - Main application layout
  • NavMenu.razor - Navigation menu component
  • Header.razor - Application header
  • Footer.razor - Application footer
  • ErrorBoundary.razor - Error handling component
  • LoadingSpinner.razor - Loading indicator

Shared Components

Shared components are typically:

  • Used across multiple pages
  • Define the overall structure and navigation of the app
  • Provide consistent UI elements throughout the application
  • Handle cross-cutting concerns like error handling

These components form the foundation of the user interface and should be designed for maximum reusability.