15 lines
No EOL
343 B
Kotlin
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()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |