I’m using kotlinx html builders with Kotlin-JS. I’d like to append a native DOM-Node while inside a kotlinx builder. Is it possible?
document.create.div {
val elem: HTMLElement = someFun()
// append is not defined. How can I do this?
append(elem)
}