blob: 0f5c708f372e3dce391c39c09e3e31f0cd353a04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
pub mod components;
pub mod actions;
pub mod data;
#[cfg(feature = "hydrate")]
#[wasm_bindgen::prelude::wasm_bindgen]
pub fn hydrate() {
use crate::components::app::*;
console_error_panic_hook::set_once();
leptos::mount::hydrate_islands();
}
|