dioxus/examples/readme.rs
2021-07-08 23:25:27 -04:00

20 lines
439 B
Rust

//! Example: README.md showcase
//!
//! The example from the README.md
use dioxus::prelude::*;
fn main() {
dioxus::web::launch(App)
}
static App: FC<()> = |cx| {
let mut count = use_state(cx, || 0);
cx.render(rsx! {
div {
h1 { "Hifive counter: {count}" }
button { onclick: move |_| count += 1, "Up high!" }
button { onclick: move |_| count -= 1, "Down low!" }
}
})
};