11 lines
156 B
Rust
11 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;
|