react-hyperscript-helpers
Version:
Terse syntax for hyperscript using react
12 lines (10 loc) • 407 B
HTML
<div id="app-root" />
<script src="https://unpkg.com/react@16.4.1/umd/react.production.min.js"></script>
<script src="https://unpkg.com/react-dom@16.4.1/umd/react-dom.production.min.js"></script>
<script src="./umd/react-hyperscript-helpers.min.js"></script>
<script>
function Hello() {
return rhh.div('hello world')
}
ReactDOM.render(rhh.h(Hello), document.getElementById('app-root'))
</script>