Paste HTML, get valid JSX. Runs entirely in your browser.
Convert some HTML to see changes
| HTML | JSX | Category | |
|---|---|---|---|
class | → | className | Attribute |
for | → | htmlFor | Attribute |
tabindex | → | tabIndex | Attribute |
style="color: red" | → | style={{color: 'red'}} | Style |
onclick | → | onClick | Event |
<img src="x"> | → | <img src="x" /> | Tag |
<!-- comment --> | → | {/* comment */} | Comment |