试用htm
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Document</title>
<script src="https://unpkg.com/react@16/umd/react.production.min.js" crossorigin></script>
<script src="https://unpkg.com/react-dom@16/umd/react-dom.production.min.js" crossorigin></script>
</head>
<body>
</body>
</html>
<script type="module">
import htm from 'https://unpkg.com/htm?module'
const html = htm.bind(React.createElement);
const App = () => {
return html`<h1>Hello, World</h1>`
}
ReactDOM.render(html`<${App}/>`, document.body);
</script>
代码效果: