dioxus-element-plug 0.1.1

Element UI theme-chalk components for Dioxus applications with built-in SCSS support
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! UI Components
//!
//! This module contains all the UI components styled with theme-chalk CSS.

/// Button component
pub mod button;

/// Input component
pub mod input;

/// Layout components
pub mod layout;

// Re-export commonly used components
pub use button::Button;
pub use input::Input;
pub use layout::*;