summaryrefslogtreecommitdiff
path: root/docs/guide
diff options
context:
space:
mode:
authorAylur <[email protected]>2024-11-20 12:19:28 +0100
committerGitHub <[email protected]>2024-11-20 12:19:28 +0100
commite19640360016a7d6af56f4112e5d090d8b3e5604 (patch)
tree24450f675f0998f8c344bff7dfd67da7b5095e3f /docs/guide
parent920e7d2b03e72043f55dbb4bddc020f407748518 (diff)
parent0cd2569f0338735e0a1d8f0a43575924c72916f3 (diff)
Merge pull request #117 from hashcowuwu/patch-1
docs: fix first-widgets.md
Diffstat (limited to 'docs/guide')
-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>
}
```