thaw/src/components/mod.rs

12 lines
149 B
Rust
Raw Normal View History

2023-05-16 00:01:58 +08:00
mod if_comp;
2023-05-15 12:52:03 +08:00
mod option_comp;
2023-05-16 00:01:58 +08:00
pub use if_comp::*;
pub use option_comp::*;
2023-06-10 12:40:52 +08:00
use leptos::*;
2023-05-16 00:01:58 +08:00
#[slot]
pub struct Fallback {
children: ChildrenFn,
}