1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
//! Custom widgets and helpers for terminal interface.

/// Table widget with state support.
pub mod table;

/// List widget with state support.
pub mod list;

/// Row item with limited width/height and scrolling properties.
pub mod row;

/// Style helper.
pub mod style;