thaw/src/components/mod.rs
2023-05-16 00:01:58 +08:00

11 lines
149 B
Rust

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