combo-tags
v1.0.0
Published
A mean component-based user interface library.
Readme
Combo Tags
Turn Combo components into custom tags.
Documentation
Quick Example
HTML
<hello data-name="World"></hello>JavaScript
ComboTags.add("hello", new class extends Combo.Component {
render() {
return `
<h1>Hello ${this.data.name}</h1>
`;
}
}());Contributing
See CONTRIBUTING.md
