pub mod reactive;
pub mod node;
pub mod app;
pub mod component;
pub use reactive::{Signal, signal, Computed, computed, Effect, effect};
pub use node::VNode;
pub use component::Component;
pub use app::{App, mount};
pub fn init() {
console_error_panic_hook::set_once();
}
pub use wasm_bindgen::JsValue;