dot_ix_playground 0.9.2

Interactive dot graphs playground web application.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod app;

cfg_if::cfg_if! { if #[cfg(feature = "hydrate")] {
    use wasm_bindgen::prelude::wasm_bindgen;
    use crate::app::App;

    #[wasm_bindgen]
    pub fn hydrate() {
        // initializes logging using the `log` crate
        _ = console_log::init_with_level(log::Level::Debug);
        console_error_panic_hook::set_once();

        leptos::mount::hydrate_body(App);
    }
}}