A tiny wrapper of htm and dom-chef for using JSX-like syntax to build DOM without transpile
npm install htm-chefUsing tag with CDN: _(This adding window.html)_
``html`
Using ES6 modules:
`html`
Using module bundlers: _(You need setup a bundler and install htm-chef)_
`js`
import html from 'htm-chef'
With jsut JavaScript:
`js
document.body.appendChild(html
)
`With jQuery:
`js
$('body').append(html)
``