From ce45ecc23546efd85f04a76fcb1a3a691d259129 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Thu, 6 Feb 2020 00:28:25 +0100 Subject: Expose missing widget modules in `iced_web` --- web/src/widget.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'web/src/widget.rs') diff --git a/web/src/widget.rs b/web/src/widget.rs index 3192a767..e5481243 100644 --- a/web/src/widget.rs +++ b/web/src/widget.rs @@ -18,15 +18,15 @@ use crate::{Bus, Css}; use dodrio::bumpalo; pub mod button; +pub mod checkbox; +pub mod container; pub mod image; +pub mod radio; pub mod scrollable; pub mod slider; pub mod text_input; -mod checkbox; mod column; -mod container; -mod radio; mod row; mod space; mod text; -- cgit