HTML → JSX 変換ツール
HTMLを貼り付けるだけでReact JSXに自動変換。class, for, style, self-closingタグ, コメントを一括変換。
変換ルール
class→classNamefor→htmlFortabindex→tabIndex(camelCase化)style="..."→style={{ ... }}(オブジェクト形式)- self-closing tags:
<img>→<img /> - コメント:
<!-- -->→{/* */} data-*/aria-*属性はそのまま保持