docs: fix typo in view fn (#1050)

This commit is contained in:
kasbuunk 2023-05-16 20:34:37 +02:00 committed by GitHub
parent 00fcd1c65e
commit 9453164dd2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,7 +15,7 @@ You _could_ do this by just creating two `<progress>` elements:
let (count, set_count) = create_signal(cx, 0);
let double_count = move || count() * 2;
view! {
view! { cx,
<progress
max="50"
value=count