Nail Gilaziev
06/11/2018, 7:19 PMsnrostov
06/12/2018, 7:57 AM@JsName("PaperInput")
external class PaperInput : React.Component<RProps, RState> {
override fun render(): ReactElement?
}
fun RBuilder.paperInput(onChange: () -> Unit, value: String) = child(PaperInput::class) {
this.onChange = onChange
this.value = value
handler()
}