Expose pure flex module as public

This commit is contained in:
Cory Forsstrom 2022-05-05 08:56:24 -07:00
parent 7087a3d75c
commit 927e1a99d2

View file

@ -87,12 +87,11 @@
#![forbid(unsafe_code)]
#![forbid(rust_2018_idioms)]
pub mod flex;
pub mod helpers;
pub mod overlay;
pub mod widget;
pub(crate) mod flex;
mod element;
pub use element::Element;