create-element-lib
v1.0.0
Published
Super tiny h library.
Downloads
493
Readme
create-element.js
Super tiny h library.
Install
npm i create-element-lib --save
Usage
const myElement = h(
'div', {
id: 'foo',
},
'bar'
h('p', { click: (event, clickedElement) => {
console.log('foo');
}}, 'Click me')
);
// -> <div id="foo"><p>Click me</p></div>
// click on <p>
// console: foo