mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-12-02 08:59:14 +00:00
21 lines
396 B
Rust
21 lines
396 B
Rust
use dioxus::prelude::*;
|
|
|
|
fn main() {
|
|
launch(app);
|
|
}
|
|
|
|
fn app() -> Element {
|
|
let mut signal = use_signal_sync(|| 0);
|
|
|
|
use_hook(|| {
|
|
std::thread::spawn(move || loop {
|
|
std::thread::sleep(std::time::Duration::from_secs(1));
|
|
signal += 1;
|
|
});
|
|
});
|
|
|
|
rsx! {
|
|
button { onclick: move |_| signal += 1, "Increase" }
|
|
"{signal}"
|
|
}
|
|
}
|