euv-example 0.3.37

An example application demonstrating the euv UI framework with reactive signals, custom components, and WebAssembly.
Documentation
//! euv Example
//!
//! A demonstration application showcasing the euv component system,
//! reactive signals, routing, and HTML macros.

mod app;
mod component;
mod page;
mod router;
mod style;
mod theme;

use {app::*, component::*, page::*, router::*, style::*, theme::*};

use euv::{js_sys::*, wasm_bindgen::prelude::*, wasm_bindgen_futures::*, web_sys::*, *};

/// Entry point for the euv example application.
#[wasm_bindgen]
pub fn main() {
    console_error_panic_hook::set_once();
    inject_app_global_css();
    mount("#app", app);
}