diff options
author | Timur Gruzdev <[email protected]> | 2025-03-12 18:38:33 +0300 |
---|---|---|
committer | noname <[email protected]> | 2025-04-25 01:19:20 +1000 |
commit | 2fe716e51d9b1abf470e99df6f58182353ceb11b (patch) | |
tree | f6e2c29e88f606d2e6f8babcaa5376de57c90789 | |
parent | 679a25a09766dc390147590c95c94eb5b2d23d3f (diff) |
Fixed JSX syntax typos (#321)
-rw-r--r-- | docs/guide/typescript/first-widgets.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/guide/typescript/first-widgets.md b/docs/guide/typescript/first-widgets.md index 9b8bf32..68c9c39 100644 --- a/docs/guide/typescript/first-widgets.md +++ b/docs/guide/typescript/first-widgets.md @@ -353,9 +353,9 @@ return <box> {num(n => range(n).map(i => ( <button> {i.toString()} - <button/> + </button> )))} -<box> +</box> ``` :::tip |