1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//! # Mogwai
//!
//! Mogwai is library for frontend web development using Rust-to-Wasm
//! compilation. Its goals are simple:
//! * provide a declarative approach to creating and managing DOM nodes
//! * encapsulate component state and compose components easily
//! * explicate DOM updates
//! * feel snappy
//!
//! ## Learn more
//! If you're new to Mogwai, check out the [introduction](an_introduction) module.
extern crate console_log;
#[macro_use]
extern crate log;
extern crate web_sys;

pub mod an_introduction;
pub mod builder;
pub mod component;
pub mod gizmo;
pub mod prelude;
pub mod txrx;
pub mod utils;