mirror of
https://github.com/adoyle0/thaw.git
synced 2025-02-02 16:44:15 -05:00
9 lines
182 B
Rust
9 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();
|
||
|
}
|