Robert Jaros
05/27/2024, 5:48 PMdiv {
val button = buttonRef("A button") {
onClick {
println("clicked")
}
}
button("Another button") {
onClick {
button.focus()
}
}
}