Shortcut to preact-hyperscript's createElement
npm install preact-hyperscript-hShortcuts to [preact-hyperscript]'s createElement, and other methods.
[preact-hyperscript]: https://github.com/queckezz/preact-hyperscript
```
npm install preact-hyperscript
npm install preact-hyperscript-h
`
// Instead of:
// import {div, createElement as h} from 'preact-hyperscript'
import h from 'preact-hyperscript-h'
h(SomeComponent)
h('div')
h.div()
``