is there sample application which works newer vers...
# javascript
s
is there sample application which works newer version of kotlin-react wrappers
Copy code
import kotlinx.browser.document
import react.dom.render

fun main() {
    render(document.getElementById("root")){
        child(app)
    }
}
Copy code
import react.Props
import react.*
import react.dom.*
import react.dom.html.ReactHTML.div
import react.dom.html.ReactHTML.h1
import react.dom.html.ReactHTML.h3


val app = FC<Props> {
    h1 {
        +"KotlinConf Explorer"
    }
    div {
        h3 {
            +"Videos to watch"
        }

        h3 {
            +"Videos watched"
        }
    }
}
I am getting error with child