Skip to main content

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    rc::Rc,
17    sync::atomic::{AtomicBool, Ordering},
18};
19
20use {js_sys::*, lombok_macros::*, wasm_bindgen::prelude::*, wasm_bindgen_futures::*, web_sys::*};