summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHong Huajun <[email protected]>2024-11-20 16:34:59 +0800
committerGitHub <[email protected]>2024-11-20 16:34:59 +0800
commit0cd2569f0338735e0a1d8f0a43575924c72916f3 (patch)
tree24450f675f0998f8c344bff7dfd67da7b5095e3f
parent920e7d2b03e72043f55dbb4bddc020f407748518 (diff)
Update first-widgets.md
The <button> tag in the code is missing a /`
-rw-r--r--docs/guide/typescript/first-widgets.md2
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>
}
```