init(dixous): inital testing around dioxus

This commit is contained in:
2025-04-21 22:12:44 -06:00
parent 43f4d8446b
commit 9e5563376b
19 changed files with 5870 additions and 0 deletions

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

@ -0,0 +1,6 @@
//! 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 to be used in our app.
mod hero;
pub use hero::Hero;