Represents a component or view.
const Example = new class extends Combo.Component { render() { return ` <div>Hello World</div> `; } }(); Example.mount(document.getElementById("root"));
<div id="root"></div>
Last updated 6 years ago