dioxus/examples/readme.rs
2022-12-29 17:11:29 -05:00

20 lines
441 B
Rust

//! Example: README.md showcase
//!
//! The example from the README.md.
use dioxus::prelude::*;
#[tokio::main]
async fn main() {
dioxus_desktop::launch(app).await;
}
fn app(cx: Scope) -> Element {
let mut count = use_state(cx, || 0);
cx.render(rsx! {
h1 { "High-Five counter: {count}" }
button { onclick: move |_| count += 1, "Up high!" }
button { onclick: move |_| count -= 1, "Down low!" }
})
}