kagura 0.14.3

component-oriented GUI framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
extern crate async_std;

pub mod component;
pub mod node;
pub mod runtime;
pub mod util;

pub use component::Component;
pub use runtime::Runtime;

pub mod prelude {
    pub use crate::component::{BatchProcess, Cmd, Constructor, Render, Update};
    pub use crate::Component;
}