summaryrefslogtreecommitdiffstats
path: root/src/app/widgets/base.rs
blob: 3e63e3e6a2248f3adce3017f1ec65b609e62e7a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//! A collection of basic components.

pub mod text_table;
pub use text_table::TextTable;

pub mod sort_text_table;
pub use sort_text_table::SortableTextTable;

pub mod time_graph;
pub use time_graph::TimeGraph;

pub mod scrollable;
pub use scrollable::Scrollable;

pub mod text_input;
pub use text_input::TextInput;

pub mod sort_menu;
pub use sort_menu::SortMenu;