HTML to JSX Converter

Convert HTML to React JSX with automatic attribute conversion.

Conversion Rules

Attribute Conversions

  • class ? className
  • for ? htmlFor
  • tabindex ? tabIndex
  • readonly ? readOnly
  • onclick ? onClick

Other Conversions

  • Self-closing tags: <br> ? <br />
  • Style strings ? Style objects
  • HTML comments ? JSX comments
  • Boolean attributes: disabled ? disabled={true}