|
@@ -62,13 +62,13 @@ Dioxus is a portable, performant, and ergonomic framework for building cross-pla
|
|
|
|
|
|
```rust
|
|
|
fn app(cx: Scope) -> Element {
|
|
|
- let (count, set_count) = use_state(&cx, || 0);
|
|
|
+ let count = use_state(&cx, || 0);
|
|
|
|
|
|
- cx.render(rsx!(
|
|
|
+ cx.render(rsx! {
|
|
|
h1 { "High-Five counter: {count}" }
|
|
|
- button { onclick: move |_| set_count(count + 1), "Up high!" }
|
|
|
- button { onclick: move |_| set_count(count - 1), "Down low!" }
|
|
|
- ))
|
|
|
+ button { onclick: move |_| count.set(count + 1), "Up high!" }
|
|
|
+ button { onclick: move |_| count.set(count - 1), "Down low!" }
|
|
|
+ })
|
|
|
}
|
|
|
```
|
|
|
|