(I know this is not typed, but it might be easy to...
# kvision
k
(I know this is not typed, but it might be easy to put some raw html from a template to quickly see whether it works, and later refactor to a typed tags).
k
Sorry to bug you again.. I have my hbs file under /src/frontendMain/resources/bhs/test.hbs, which has an html snippet.
In my kotlin code I have,
Copy code
div(className = "container") {
    div {
        template = require("hbs/test.hbs")
    }
}
I have included this in the build script: implementation("io.kvisionkvision handlebars$kvisionVersion") I cant see the html rendered inside:
Copy code
<div class="container">
  <div></div>
</div>
Is there any other thing to do?
ah.. let me try with setting some data..
Yes, Even if the data is not used, it needs it.. Got it..