fints4k/SampleApplications/WebApp/src/main/kotlin/main.kt

15 lines
No EOL
343 B
Kotlin

import kotlinx.browser.document
import kotlinx.browser.window
import react.dom.render
fun main() {
window.onload = {
render(document.getElementById("root")!!) {
child(AccountTransactionsView::class) {
attrs {
presenter = Presenter()
}
}
}
}
}