dx-test/ui/src/lib.rs
2025-04-07 12:17:09 -05:00

10 lines
156 B
Rust

//! This crate contains all shared UI for the workspace.
mod hero;
pub use hero::Hero;
mod navbar;
pub use navbar::Navbar;
mod echo;
pub use echo::Echo;