1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#![forbid(unsafe_code)]

pub mod attribute;
pub mod css;
pub mod events;
pub mod html;
pub mod seed_ext;

#[macro_use]
extern crate seed;

#[macro_use]
extern crate derive_more;

pub mod prelude {
    pub use crate::{
        attribute as att, css,
        events::EventsApi,
        html,
        seed_ext::{AddForEl, ElExt, ElRefExt, NodeExt, SetForEl, TryAddForEl, TrySetForEl},
    };
    pub use seed::prelude::{El, ElRef, Node, UpdateEl, UpdateElForIterator};
}