mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 06:44:17 +00:00
docs: fix typo in view fn (#1050)
This commit is contained in:
parent
00fcd1c65e
commit
9453164dd2
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue