Skip to content

Instantly share code, notes, and snippets.

@rivasdiaz
Last active November 19, 2017 08:27
Show Gist options
  • Save rivasdiaz/0821880f03cbe68a3576d045358ada7c to your computer and use it in GitHub Desktop.
Save rivasdiaz/0821880f03cbe68a3576d045358ada7c to your computer and use it in GitHub Desktop.
import kotlinx.html.js.onClickFunction
import org.w3c.dom.events.Event
import react.RBuilder
import react.dom.button
fun RBuilder.square(value: String, onClickFunction: (Event) -> Unit) =
button(classes = "square") {
+value
attrs.onClickFunction = onClickFunction
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment