thaw/examples/island/src/lib.rs

9 lines
182 B
Rust
Raw Normal View History

pub mod app;
#[cfg(feature = "hydrate")]
#[wasm_bindgen::prelude::wasm_bindgen]
pub fn hydrate() {
console_error_panic_hook::set_once();
leptos::mount::hydrate_islands();
}