diff options
author | 2022-02-17 19:08:54 +0700 | |
---|---|---|
committer | 2022-02-17 19:08:54 +0700 | |
commit | da45b6c1627935bff5334d213096c4e78972af46 (patch) | |
tree | 86840f251dd51f41de2fe79083e9975b51ec1f4f /lazy/src/lib.rs | |
parent | 2737b21d346c9034502c345dea735ca136b49cea (diff) | |
download | iced-da45b6c1627935bff5334d213096c4e78972af46.tar.gz iced-da45b6c1627935bff5334d213096c4e78972af46.tar.bz2 iced-da45b6c1627935bff5334d213096c4e78972af46.zip |
Implement `pure::Component` in `iced_lazy`
Diffstat (limited to 'lazy/src/lib.rs')
-rw-r--r-- | lazy/src/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lazy/src/lib.rs b/lazy/src/lib.rs index 05fce765..5d7d10e4 100644 --- a/lazy/src/lib.rs +++ b/lazy/src/lib.rs @@ -1,6 +1,9 @@ pub mod component; pub mod responsive; +#[cfg(feature = "pure")] +pub mod pure; + pub use component::Component; pub use responsive::Responsive; |