rebase: use dirname.rs module structure instead of mod.rs duplicates

This commit is contained in:
Reed Krantz
2026-01-12 16:26:48 -06:00
parent 5ec6c54f22
commit e91d0d9b6a
2 changed files with 0 additions and 0 deletions

View File

@@ -1,9 +0,0 @@
//! The components module contains all shared components for our app. Components are the building blocks of dioxus apps.
//! They can be used to defined common UI elements like buttons, forms, and modals. In this template, we define a Hero
//! component and an Echo component for fullstack apps to be used in our app.
mod hero;
pub use hero::Hero;
mod echo;
pub use echo::Echo;