Take the pain out of keeping all your calendars together
at main 205 B view raw
1pub mod app; 2 3#[cfg(feature = "hydrate")] 4#[wasm_bindgen::prelude::wasm_bindgen] 5pub fn hydrate() { 6 use crate::app::*; 7 console_error_panic_hook::set_once(); 8 leptos::mount::hydrate_body(App); 9}