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
26
27
#![feature(track_caller)]

mod ev_handlers;

mod schedule_update;
mod seed_bind;
mod update_el;
mod utils;
pub use ev_handlers::StateAccessEventHandlers;
pub use schedule_update::{register_app, schedule_update};
pub use seed_bind::{bind, UpdateElLocal};
pub use update_el::{StateAccessUpdateEl, LocalUpdateEl2};
pub use utils::{
    after_render, after_render_once, get_html_element_by_id, //handle_unmount,
    request_animation_frame,
};


pub use atomic_hooks::*;

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