summaryrefslogblamecommitdiffstats
path: root/web/src/widget.rs
blob: 5cb89a60f9a7c5b920e80738dd84fe7050df8801 (plain) (tree)



















                            
pub mod button;
pub mod slider;
pub mod text;

mod checkbox;
mod column;
mod image;
mod radio;
mod row;

pub use button::Button;
pub use checkbox::Checkbox;
pub use column::Column;
pub use image::Image;
pub use radio::Radio;
pub use row::Row;
pub use slider::Slider;
pub use text::Text;

pub trait Widget<Message> {}