thaw/examples/island/src/lib.rs
2024-08-22 22:52:26 +08:00

8 lines
182 B
Rust

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