1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[macro_use]
extern crate dominator_component_macros;

extern crate futures_signals;

pub mod components;
pub mod elements;
pub mod utils;

#[cfg(test)]
mod tests {
    use wasm_bindgen_test::wasm_bindgen_test_configure;

    wasm_bindgen_test_configure!(run_in_browser);
}