You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
211 B
Rust

//! Page components for the quotesdb frontend.
//!
//! Each page corresponds to a route in the [`crate::Route`] enum.
pub mod admin;
pub mod author;
pub mod browse;
pub mod home;
pub mod quote;
pub mod submit;