euv-example 0.2.1

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 RSX macros.

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

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

use {euv_core::*, euv_macros::*};

use {wasm_bindgen::prelude::*, web_sys::*};

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