mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 12:43:08 +00:00
dd109f20d2
This commit fixes the owned impl to use the original generics rather than the build generics.
30 lines
656 B
Rust
30 lines
656 B
Rust
//! Signals can degrade into a ReadOnlySignal variant automatically
|
|
//! This is done thanks to a conversion by the #[component] macro
|
|
|
|
use dioxus::prelude::*;
|
|
|
|
fn main() {
|
|
launch(app);
|
|
}
|
|
|
|
fn app() -> Element {
|
|
let mut count = use_signal(|| 0);
|
|
|
|
rsx! {
|
|
h1 { "High-Five counter: {count}" }
|
|
button { onclick: move |_| count += 1, "Up high!" }
|
|
button { onclick: move |_| count -= 1, "Down low!" }
|
|
Child {
|
|
count,
|
|
"hiiii"
|
|
}
|
|
}
|
|
}
|
|
|
|
#[component]
|
|
fn Child(count: ReadOnlySignal<i32>, children: Element) -> Element {
|
|
rsx! {
|
|
div { "Count: {count}" }
|
|
{children}
|
|
}
|
|
}
|