12 lines
262 B
Kotlin
12 lines
262 B
Kotlin
import at.mocode.client.ui.App
|
|
import androidx.compose.ui.ExperimentalComposeUiApi
|
|
import androidx.compose.ui.window.CanvasBasedWindow
|
|
|
|
@OptIn(ExperimentalComposeUiApi::class)
|
|
fun main() {
|
|
CanvasBasedWindow(canvasElementId = "root") {
|
|
App()
|
|
}
|
|
}
|
|
|