Handlebars.js Templates
@JsModule("/kotlin/modules/hbs/template.hbs")
external val templateHbs: dynamic
@JsModule("/kotlin/modules/hbs/template.en.hbs")
external val templateEnHbs: dynamic
@JsModule("/kotlin/modules/hbs/template.pl.hbs")
external val templatePlHbs: dynamic
div {
template = templateHbs
}
div {
templates = mapOf(
"en" to templateEnHbs,
"pl" to templatePlHbs
)
}Last updated