euv_ui/lib.rs
1//! euv-ui
2//!
3//! Reusable UI component library for the euv framework,
4//! providing buttons, cards, modals, inputs, theme management, and more.
5
6mod component;
7mod style;
8
9pub use {component::*, style::*};
10
11use euv::*;
12
13use std::{
14 cell::{Cell, RefCell, UnsafeCell},
15 collections::HashSet,
16 ops::Deref,
17 rc::Rc,
18 sync::{
19 LazyLock,
20 atomic::{AtomicBool, Ordering},
21 },
22};
23
24use {js_sys::*, lombok_macros::*, wasm_bindgen::prelude::*, wasm_bindgen_futures::*, web_sys::*};