Skip to main content

HTML to JSX Converter

Convert your HTML code to React JSX syntax instantly.
Paste your HTML and get valid JSX code.

JSX will appear here...
Enter HTML to see conversion details

What gets converted

Attributes

class className, for htmlFor, tabindex tabIndex

Event Handlers

onclick onClick, onchange onChange, and all other event handlers

Inline Styles

style="color: red" style={{ color: 'red' }}

Self-closing Tags

<img> <img />, <br> <br />

Comments

<!-- comment --> {/* comment */}

Boolean Attributes

disabled, checked, required are preserved as-is