convert react-el to html.
$ npm i reactel-to-html
import convert from "reactel-to-html";
const el = `<div className="App">
<h1>Hello CodeSandbox</h1>
<h2>Start editing to see some magic happen!</h2>
</div>`;
const html = convert(el);
// <div class="App" data-reactroot=""><h1>Hello CodeSandbox</h1><h2>Start editing to see some magic happen!</h2></div>
# package install
$ npm i
# build
$ npx tsc
# test
$ npx jest
# exec
$ node bin/reactelToHtml.js '<div className="App"><h1>Hello CodeSandbox</h1><h2>Start editing to see some magic happen!</h2></div>'