simi 0.2.1

A framework for building wasm front-end web application in Rust
//! Implement the virtual dom of the framework

mod arm;
mod component;
mod element;
mod keyed_for;
mod node;
mod node_list;
mod non_keyed_for;
mod sub_app;
mod text;
mod web_sys_node;

pub use self::arm::Arm;
pub use self::component::Component;
pub use self::element::Element;
pub use self::keyed_for::KeyedFor;
pub use self::node::Node;
pub use self::node_list::NodeList;
pub use self::non_keyed_for::NonKeyedFor;
pub use self::sub_app::SubApp;
pub use self::text::Text;
pub use self::web_sys_node::WebSysNode;