hyperscript
hyperscript copied to clipboard
Any TypeScript examples?
I'm currently this far:
yarn add hyperscript @types/hyperscript
import h from 'hyperscript'
const d = h('div', 'hi', {
styles: {
backgroundColor: 'black',
color: 'white'
}
})
document.body.appendChild(d)
Though in Angular it asks me to use because of the ESModuleInterop feature
import * as h from 'hyperscript'