mod component;
mod data;
mod router;
mod generated {
include!(concat!(env!("OUT_DIR"), "/docs_gen.rs"));
}
pub use std::{cell::RefCell, fmt::Debug, rc::Rc};
use {
data::*,
euv::{wasm_bindgen::prelude::*, web_sys::*, *},
euv_ui::*,
router::*,
};
use crate::component::*;
#[wasm_bindgen]
pub fn main() {
console_error_panic_hook::set_once();
inject_app_global_css();
Css::inject_css(EUV_MD_CSS);
Css::inject_css(
".md-body h1, .md-body h2, .md-body h3, .md-body h4, .md-body h5, .md-body h6 { padding-left: 0 !important; } \
.md-body .header-anchor, .md-body h1:hover .header-anchor, .md-body h2:hover .header-anchor, .md-body h3:hover .header-anchor, .md-body h4:hover .header-anchor, .md-body h5:hover .header-anchor, .md-body h6:hover .header-anchor { display: none !important; }",
);
App::mount("#app", app);
}