for reference I am trying to do something like thi...
# kweb
a
for reference I am trying to do something like this
Copy code
render(boolKVar) {
  if (boolKVar.value) {
    div().new {
      p().text("Loaded.")
    }
  } else {
    div().new {
      p().text("Loading...")
    }
  }
}