Skip to content

Instantly share code, notes, and snippets.

@orbitmechanic
Created August 24, 2020 21:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save orbitmechanic/8cfaa0f04519af42008ce3638066168f to your computer and use it in GitHub Desktop.
Save orbitmechanic/8cfaa0f04519af42008ce3638066168f to your computer and use it in GitHub Desktop.
Transform <div id='hello'> <p>Lorum, ipsum.</p> </div> into JSX
React.createElement(
"div", {
id: "hello"
},
React.createElement(
"p",
null,
"Lorem, ipsum."
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment