So now we can use standard functions to build decl...
# kilua
r
So now we can use standard functions to build declarative UI the usual way:
Copy code
div {
    button("A button") {
        onClick { 
            println("clicked")
        }
    }
}