Component

Represents a component or view.

Example

const Example = new class extends Combo.Component {  
    render() {
        return `
            <div>Hello World</div>
        `;
    }
}();

Example.mount(document.getElementById("root"));

Last updated