dioxus/docs/guide/examples/hooks_use_ref.rs

23 lines
448 B
Rust
Raw Normal View History

#![allow(non_snake_case)]
use dioxus::prelude::*;
fn main() {
dioxus_desktop::launch(App);
}
// ANCHOR: component
fn App(cx: Scope) -> Element {
let list = use_ref(cx, Vec::new);
cx.render(rsx!(
p { "Current list: {list.read():?}" }
button {
onclick: move |event| {
list.with_mut(|list| list.push(event));
},
"Click me!"
}
))
}
// ANCHOR_END: component