mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 14:44:12 +00:00
29 lines
519 B
Rust
29 lines
519 B
Rust
#![allow(non_snake_case)]
|
|
|
|
use dioxus::prelude::*;
|
|
|
|
fn main() {
|
|
dioxus::desktop::launch(app)
|
|
}
|
|
|
|
static NAME: Atom<String> = |_| "world".to_string();
|
|
|
|
fn app(cx: Scope) -> Element {
|
|
let name = use_read(&cx, NAME);
|
|
|
|
cx.render(rsx! {
|
|
div { "hello {name}!" }
|
|
Child {}
|
|
})
|
|
}
|
|
|
|
fn Child(cx: Scope) -> Element {
|
|
let set_name = use_set(&cx, NAME);
|
|
|
|
cx.render(rsx! {
|
|
button {
|
|
onclick: move |_| set_name("dioxus".to_string()),
|
|
"reset name"
|
|
}
|
|
})
|
|
}
|