initial commit

This commit is contained in:
Reed Krantz
2026-01-12 16:21:15 -06:00
commit 5ec6c54f22
25 changed files with 7388 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;