gpui_component/table/
mod.rs1use gpui::App;
2
3mod column;
4mod data_table;
5mod delegate;
6mod loading;
7mod state;
8mod table;
9
10pub use column::*;
11pub use data_table::*;
12pub use delegate::*;
13pub use state::*;
14pub use table::*;
15
16pub(crate) fn init(cx: &mut App) {
17 data_table::init(cx);
18}