Last active
November 19, 2017 08:27
-
-
Save rivasdiaz/0821880f03cbe68a3576d045358ada7c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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