> For the complete documentation index, see [llms.txt](https://combo-js.gitbook.io/project/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://combo-js.gitbook.io/project/apis/component/rendered.md).

# rendered

### Example

{% tabs %}
{% tab title="JavaScript" %}

```
import { Component } from "combo-js";

const Example = new class extends Component {
    rendered() {
        console.log("The component was rendered.")
    }
}();

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

{% endtab %}

{% tab title="HTML" %}

```markup
<div id="root"></div>
```

{% endtab %}
{% endtabs %}

### Notes

Used to mount child components.
