Wizard: add simple JS client template

This commit is contained in:
Ilya Kirillov
2019-12-14 16:06:59 +03:00
parent 56fccce305
commit 8bf9c31880
11 changed files with 165 additions and 17 deletions
@@ -0,0 +1,14 @@
import kotlinx.html.div
import kotlinx.html.dom.append
import kotlin.browser.document
import kotlin.browser.window
fun main() {
window.onload = {
document.body?.append {
div {
+"Hello from JS"
}
}
}
}