mirror of
https://github.com/jlengrand/compose-multiplatform.git
synced 2026-03-10 08:11:20 +00:00
* 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>
12 lines
220 B
Kotlin
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
|
|
}
|