thaw/thaw_components/src/lib.rs
2024-07-10 16:37:38 +08:00

22 lines
473 B
Rust

mod binder;
mod css_transition;
mod focus_trap;
mod if_comp;
mod option_comp;
mod teleport;
mod wave;
pub use binder::{Binder, Follower, FollowerPlacement, FollowerWidth};
pub use css_transition::CSSTransition;
pub use focus_trap::FocusTrap;
pub use if_comp::{ElseIf, If, Then};
pub use option_comp::OptionComp;
pub use teleport::Teleport;
pub use wave::{Wave, WaveRef};
use leptos::prelude::{slot, ChildrenFn};
#[slot]
pub struct Fallback {
children: ChildrenFn,
}