Files
YAEP/composeApp/src/desktopMain/kotlin/main.kt

11 lines
224 B
Kotlin
Raw Normal View History

import androidx.compose.ui.window.Window
import androidx.compose.ui.window.application
fun main() = application {
Window(
onCloseRequest = ::exitApplication,
title = "YAEP",
) {
App()
}
}