Fix closure signature for use_ref example in interactivity docs

The example showed the closure accepting a single argument, but it accepts
none.
This commit is contained in:
Dave Rolsky 2022-02-15 09:54:32 -06:00
parent f6df21a34c
commit 7c2d911fbf

View file

@ -140,7 +140,7 @@ fn Child(cx: Scope, name: String) -> Element {
// ✅ Or, use a hashmap with use_ref
```rust
let ages = use_ref(&cx, |_| HashMap::new());
let ages = use_ref(&cx, || HashMap::new());
names.iter().map(|name| {
let age = ages.get(name).unwrap();