brisk-common-components 0.8.0

Common components for the brisk declarative engine.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![doc = include_str!("../README.MD")]
#![warn(missing_docs)]

use lazy_static::lazy_static;

mod control;

lazy_static! {
    /// Manager for the `ègui` component. Can be merged into an other manager for extensions.
    pub static ref MANAGER: brisk_it::generator::Manager = {
        let manager = brisk_it::generator::ManagerBuilder::new()
        .create::<control::Match>("Match")
        .create::<control::Repeater>("Repeater");

        manager.into()
    };
}