Initial commit

(Multiplatform project template)
This commit is contained in:
Christian Basler
2024-04-29 17:14:43 +02:00
commit 1b9c8633c9
38 changed files with 949 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import androidx.compose.ui.window.Window
import androidx.compose.ui.window.application
fun main() = application {
Window(
onCloseRequest = ::exitApplication,
title = "YAEP",
) {
App()
}
}