mirror of
https://github.com/adoyle0/thaw.git
synced 2025-02-08 19:03:09 -05:00
20 lines
451 B
Rust
20 lines
451 B
Rust
mod binder;
|
|
mod css_transition;
|
|
mod focus_trap;
|
|
mod if_comp;
|
|
mod option_comp;
|
|
mod teleport;
|
|
|
|
pub use binder::{Binder, Follower, FollowerInjection, 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;
|
|
|
|
use leptos::prelude::{slot, ChildrenFn};
|
|
|
|
#[slot]
|
|
pub struct Fallback {
|
|
children: ChildrenFn,
|
|
}
|