Wizard: fix default template compilation when using JS IR

#KT-39904 fixed
This commit is contained in:
Ilya Kirillov
2020-07-21 15:05:47 +03:00
parent e4cd7cdbcf
commit 983c84d6a6
@@ -14,12 +14,13 @@ import react.dom.div
import react.dom.input
#end
interface WelcomeProps : RProps {
external interface WelcomeProps : RProps {
var name: String
}
data class WelcomeState(val name: String) : RState
@JsExport
class Welcome(props: WelcomeProps) : RComponent<WelcomeProps, WelcomeState>(props) {
init {