extern crate js_sys;
extern crate rand;
extern crate serde_derive;
extern crate wasm_bindgen;
extern crate wasm_bindgen_futures;
extern crate web_sys;
mod audio;
mod basic_component;
mod dom;
mod event;
mod native;
mod state;
mod task;
use dom::component::Component;
pub fn run<Msg, State, Sub>(component: Component<Msg, State, Sub>, id: &str)
where
Msg: 'static,
State: 'static,
Sub: 'static,
{
state::init(component, id);
}
pub mod prelude {
pub use crate::dom::component::Cmd;
pub use crate::dom::component::Component;
pub use crate::dom::html::Attributes;
pub use crate::dom::html::Events;
pub use crate::dom::html::Html;
}