mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-14 00:17:17 +00:00
20 lines
474 B
Rust
20 lines
474 B
Rust
#![allow(non_snake_case)]
|
|
|
|
use dioxus::prelude::*;
|
|
|
|
fn main() {
|
|
launch(app)
|
|
}
|
|
|
|
// Because signal is never read in this component, this component will not rerun when the signal changes
|
|
fn app() -> Element {
|
|
use_context_provider(|| Signal::new(0));
|
|
rsx! { Child {} }
|
|
}
|
|
|
|
// This component does read from the signal, so when the signal changes it will rerun
|
|
#[component]
|
|
fn Child() -> Element {
|
|
let signal: Signal<i32> = use_context();
|
|
rsx! { "{signal}" }
|
|
}
|