yew-bulma 0.0.1

Yew components compatible with the Bulma CSS framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod button;
pub mod field;
pub mod label;
pub mod radio;
pub mod storage;
pub mod text_input;

pub mod prelude {
    pub use super::{
        button::Button, field::Field, label::Label, radio::Radio, storage::FormStorage,
        text_input::TextInput,
    };
    pub use crate::title::Title;
}