试用htm

github地址

<!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>

代码效果:
image

posted @ 2021-12-24 23:49  七つ一旋桜  阅读(50)  评论(0)    收藏  举报