21 lines
537 B
Rust
21 lines
537 B
Rust
//! 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 input;
|
|
pub use input::Input;
|
|
|
|
mod echo;
|
|
pub use echo::Echo;
|
|
|
|
mod edit_quote;
|
|
pub use edit_quote::EditQuote;
|
|
|
|
pub mod calendar;
|
|
pub mod date_picker;
|
|
pub mod popover;
|
|
pub mod textarea;
|