mirror of
https://github.com/adoyle0/thaw.git
synced 2025-02-02 16:44:15 -05:00
21 lines
400 B
Rust
21 lines
400 B
Rust
|
mod binder;
|
||
|
mod css_transition;
|
||
|
mod if_comp;
|
||
|
mod option_comp;
|
||
|
mod teleport;
|
||
|
mod wave;
|
||
|
|
||
|
pub use binder::{Binder, Follower, FollowerPlacement, FollowerWidth};
|
||
|
pub use css_transition::CSSTransition;
|
||
|
pub use if_comp::{ElseIf, If, Then};
|
||
|
pub use option_comp::OptionComp;
|
||
|
pub use teleport::Teleport;
|
||
|
pub use wave::{Wave, WaveRef};
|
||
|
|
||
|
use leptos::*;
|
||
|
|
||
|
#[slot]
|
||
|
pub struct Fallback {
|
||
|
children: ChildrenFn,
|
||
|
}
|