kagura 0.13.2

Frontend frame-work for wasm on Rust.
Documentation
extern crate js_sys;
extern crate wasm_bindgen;
extern crate wasm_bindgen_futures;
extern crate web_sys;

mod debug;
mod env;
pub mod html;
pub mod kagura;
mod libs;
mod state;

pub use html::Html;
pub use kagura::Kagura;

pub mod prelude {
    pub use crate::html::component::{self, Constructor, PrepackedComponent, Render, Update};
    pub use crate::html::{self, Attributes, Component, Events};
    pub use crate::Html;
    pub use crate::Kagura;
}