thaw/src/components/mod.rs
2023-06-10 12:40:52 +08:00

11 lines
149 B
Rust

mod if_comp;
mod option_comp;
pub use if_comp::*;
pub use option_comp::*;
use leptos::*;
#[slot]
pub struct Fallback {
children: ChildrenFn,
}