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::*;
use leptos::*;
pub use option_comp::*;
#[slot]
pub struct Fallback {
children: ChildrenFn,
}