Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

PB2204/Html2React

Repository files navigation

Convert HTML to React JSX

A simple Visual Studio Code plugin that converts html text to React JSX.

Just ctrl + shift + P -> Convert HTML to React JSX in the document you want to edit and run it.

Html2React

How does it work

It simply replaces html tags with React ones.

Here's the current list:

var mapObj = {
  "class=": "className=",
  "for=": "htmlFor=",
  "-rule": "Rule",
  "stroke-l": "strokeL",
  "stroke-w": "strokeW",
  "<!--": "{/*",
  "-->": "*/}",
  tabindex: "tabIndex",
};

Open a pull request to add missing rules.

Morty Proxy This is a proxified and sanitized view of the page, visit original site.