diff options
Diffstat (limited to 'helix-tui/src/widgets/mod.rs')
-rw-r--r-- | helix-tui/src/widgets/mod.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/helix-tui/src/widgets/mod.rs b/helix-tui/src/widgets/mod.rs index 76eb73c1..5a48e9b5 100644 --- a/helix-tui/src/widgets/mod.rs +++ b/helix-tui/src/widgets/mod.rs @@ -9,17 +9,14 @@ //! - [`List`] //! - [`Table`] //! - [`Paragraph`] -//! - [`Clear`] mod block; -mod clear; // mod list; mod paragraph; mod reflow; // mod table; pub use self::block::{Block, BorderType}; -pub use self::clear::Clear; // pub use self::list::{List, ListItem, ListState}; pub use self::paragraph::{Paragraph, Wrap}; // pub use self::table::{Cell, Row, Table, TableState}; |