14 lines
510 B
Rust
14 lines
510 B
Rust
//! This module aggregates and re-exports all individual page components of the application.
|
|
//!
|
|
//! Each sub-module within `pages` typically represents a distinct view or section
|
|
//! of the user interface, such as authentication, ticket management, or user profiles.
|
|
//!
|
|
//! By re-exporting them here, other parts of the application can import page
|
|
//! components more conveniently using `crate::pages::*`.
|
|
pub mod basic_pages;
|
|
pub mod setup;
|
|
pub mod sidebar;
|
|
pub mod ticket;
|
|
pub mod user;
|
|
pub mod utilities;
|