euv_example/lib.rs
1//! euv Example
2//!
3//! A demonstration application showcasing the euv component system,
4//! reactive signals, routing, and RSX macros.
5
6mod app;
7mod component;
8mod page;
9mod router;
10mod style;
11
12use {app::*, component::*, page::*, router::*, style::*};
13
14use {euv_core::*, euv_macros::*};
15
16use {wasm_bindgen::prelude::*, web_sys::*};
17
18/// Entry point for the euv example application.
19#[wasm_bindgen]
20pub fn main() {
21 console_error_panic_hook::set_once();
22 mount("#app", app);
23}