diff options
author | Hong Huajun <[email protected]> | 2024-11-20 16:34:59 +0800 |
---|---|---|
committer | GitHub <[email protected]> | 2024-11-20 16:34:59 +0800 |
commit | 0cd2569f0338735e0a1d8f0a43575924c72916f3 (patch) | |
tree | 24450f675f0998f8c344bff7dfd67da7b5095e3f /docs/guide/typescript | |
parent | 920e7d2b03e72043f55dbb4bddc020f407748518 (diff) |
Update first-widgets.md
The <button> tag in the code is missing a /`
Diffstat (limited to 'docs/guide/typescript')
-rw-r--r-- | docs/guide/typescript/first-widgets.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/guide/typescript/first-widgets.md b/docs/guide/typescript/first-widgets.md index ac4f739..77b2f61 100644 --- a/docs/guide/typescript/first-widgets.md +++ b/docs/guide/typescript/first-widgets.md @@ -275,7 +275,7 @@ function Counter() { <label label={bind(count).as(num => num.toString())} /> <button onClicked={increment}> Click to increment - <button> + </button> </box> } ``` |