gpui-component 0.6.0

GPUI Component: the styled component library of GPUI Kit, with 60+ desktop UI components for GPUI.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use gpui::App;

mod column;
mod data_table;
mod delegate;
mod loading;
mod state;
mod table;

pub use column::*;
pub use data_table::*;
pub use delegate::*;
pub use state::*;
pub use table::*;

pub(crate) fn init(cx: &mut App) {
    data_table::init(cx);
}