Files
compose-multiplatform/examples/web-with-react/src/jsMain/kotlin/ReactYoutubePlayer.kt
Oleksandr Karpovich a1d2f86609 Compose-Web with React examples (#693)
* Add compose-web example with a react component
* Add example with a compose component in a react app

Co-authored-by: Oleksandr Karpovich <oleksandr.karpovich@jetbrains.com>
2021-05-25 18:45:50 +02:00

12 lines
220 B
Kotlin

@file:JsModule("react-youtube-lite")
@file:JsNonModule
import react.*
@JsName("ReactYouTubeLite")
external val reactPlayer: RClass<ReactYouTubeProps>
external interface ReactYouTubeProps : RProps {
var url: String
}