JS: Convert some comments to JSX

This commit is contained in:
Asger F
2025-02-27 15:34:14 +01:00
parent c67c5854ba
commit 33602ee52b

View File

@@ -7,8 +7,8 @@ function tooltips() {
return <span>
<span data-tip={source}/>
<span data-tip={source} data-html={false} />
<span data-tip={source} data-html="true" /> // $ Alert
<span data-tip={source} data-html={true} /> // $ Alert
<span data-tip={source} data-html="true" /> { /* $ Alert */ }
<span data-tip={source} data-html={true} /> { /* $ Alert */ }
<ReactTooltip />
</span>
}