make-el
v0.3.0
Published
Fast way to create html element with dom
Downloads
3
Readme
make-element
Fast way to create html element with dom
const makeEl = require('make-el');
let h1 = makeEl('h1', {
id: 'hello',
innerText: 'hello make-el',
appendTo: document.body,
});