feat: implement Cached widget

This commit is contained in:
Nick Senger 2022-08-04 21:25:36 -07:00 committed by Héctor Ramón Jiménez
parent 08e28f6f97
commit 7138141811
No known key found for this signature in database
GPG key ID: 140CC052C94F138E
2 changed files with 346 additions and 0 deletions

View file

@ -17,9 +17,11 @@
clippy::type_complexity
)]
#![cfg_attr(docsrs, feature(doc_cfg))]
pub mod cached;
pub mod component;
pub mod responsive;
pub use cached::Cached;
pub use component::Component;
pub use responsive::Responsive;