versuch ein Daten-Modell aufzubauen

This commit is contained in:
stefan
2025-05-09 13:57:47 +02:00
parent bd399fdcd3
commit d1f5d07fab
16 changed files with 481 additions and 63 deletions
@@ -0,0 +1,13 @@
package at.mocode.compose
import androidx.compose.ui.window.Window
import androidx.compose.ui.window.application
fun main() = application {
Window(
onCloseRequest = ::exitApplication,
title = "Meldestelle",
) {
App()
}
}