logo

Crates.io version docs.rs docs CI status
Examples

Rust cross-platform reactive UI framework.

```rust enum Event { Increment, Decrement, }

fn counter(count: &i32) -> impl View> { ( Html::h1((), count.tostring()), once(Html::button(on("click", || Event::Increment), "More")), once(Html::button(on("click", |_| Event::Decrement), "Less")), ) }

fn main() { concoct::web::run( 0, |count, event| match event { Event::Increment => *count += 1, Event::Decrement => *count -= 1, }, counter, ); } ```

Features

Getting started

Web

Install trunk or wasm-pack (this tutorial will show serving with trunk).

cargo add concoct --features web

Create an index.html file in the crate root html <html> <body></body> </html>

Create a main view and run it with Concoct ```rust fn app(_state: &()) -> impl View

fn main() { concoct::web::run( 0, |_state, _event| {}, app, ); } ```

`` trunk serve ```` All done! Check it out athttp://localhost:8080`