Yew

Yew is a modern Rust framework inspired by Elm and ReactJS.

Cutting Edge technologies

Rust to WASM compilation

This framework designed to be compiled into modern browsers' runtimes: wasm, asm.js, emscripten.

Clean MVC approach inspired by Elm

```rust struct Model { }

enum Msg { DoIt, }

fn update(_: &mut Context, model: &mut Model, msg: Msg) { match msg { Msg::DoIt => { // Update your model on events } } }

fn view(model: &Model) -> Html { html! { // Render your model here