ui0 0.0.1

Tool with included UI components
Documentation
1
2
3
4
5
6
7
8
9
10
use ui0::get_component;

// read component as arg and write to stdout
fn main() {
    for arg in std::env::args() {
        if let Some(component) = get_component(&arg) {
            println!("{}", component.source);
        }
    }
}