1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
mod data_types;
mod html_common_shared_props;
mod html_media_shared_props;
mod html_table_cell_shared_props;

pub use data_types::*;
pub use html_common_shared_props::*;
pub use html_media_shared_props::*;
pub use html_table_cell_shared_props::*;

pub(crate) mod macros;

pub mod css;
pub mod html_components;

pub use css::CssProperties;

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        let result = 2 + 2;
        assert_eq!(result, 4);
    }
}