Merge pull request #252 from autarch/autarch/fix-use_ref-doc-example

Fix closure signature for use_ref example in interactivity docs
This commit is contained in:
Jonathan Kelley 2022-02-15 10:57:51 -05:00 committed by GitHub
commit d2fbebf853
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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();