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

This reverts commit e91d0d9b6a.
This commit is contained in:
Reed Krantz
2026-01-12 17:10:44 -06:00
parent e91d0d9b6a
commit d55cc20c34
2 changed files with 0 additions and 0 deletions

9
src/components/mod.rs Normal file
View File

@@ -0,0 +1,9 @@
//! 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;