Skip to content

Commit

Permalink
fix router resource docs
Browse files Browse the repository at this point in the history
  • Loading branch information
ealmloff committed Jun 19, 2024
1 parent b6dc2a2 commit 77b08f2
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions examples/router_resource.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,15 @@ fn App() -> Element {
}
}

// We use id: ReadOnlySignal<i32> instead of id: i32 to make id work with reactive hooks
// Any i32 we pass in will automatically be converted into a ReadOnlySignal<i32>
#[component]
fn Blog(id: ReadOnlySignal<i32>) -> Element {
async fn future(n: i32) -> i32 {
n
}

// if you use the naive approach, the "Blog post {id}" below will never update when clicking links!
// let res = use_resource(move || future(id));

// the use_reactive hook is required to properly update when clicking links to this component, from this component
// Because we accept ReadOnlySignal<i32> instead of i32, the resource will automatically subscribe to the id when we read it
let res = use_resource(move || future(id()));

match res() {
Expand Down

0 comments on commit 77b08f2

Please sign in to comment.