Hyperminimal functional DOM element microlibrary
Experimental
npm i h0
import h from 'h0'
const tree = h('div')({
style: {
padding: 32
}
})(
h('h1')('hello')
)
const div = h('div')
const h1 = h('h1')
const a = h('a')
const tree = div(
h1('hello'),
a({ href: '/hello' })('hi')
)
const h1 = h('h1')({
style: {
fontSize: 48,
fontWeight: 500
}
})
const tree = h1('hello')
Function that returns an element creation function with the given tagname. The returned function accepts either a plain object to set attributes, or a string or child elements to return an element.
h('div')
// returns an element creation function
h('div')({ class: 'hi' })
// returns an element creation function with attributes
h('div')({ class: 'hi' })('hello')
// returns a DOM element with an id and text content
// <div class='hi'>hello</div>
h('div')({
style: {
color: 'blue'
}
})('hello')
// Style objects are converted to strings
// <div style='color:blue'>hello</div>
h('div')('hello')
// returns a DOM element with text content
// <div>hello</div>
h('div')(
h('h1')('hello')
)
// returns a DOM element with child element
// <div>
// <h1>hello</h1>
// </div>
MIT License