feature clients

new frontend
This commit is contained in:
stefan
2025-09-25 13:03:15 +02:00
parent b8c008ddba
commit 0cc25cb108
32 changed files with 769 additions and 156 deletions
+12
View File
@@ -0,0 +1,12 @@
import androidx.compose.ui.window.Window
import androidx.compose.ui.window.application
import at.mocode.clients.app.App
fun main() = application {
Window(
onCloseRequest = ::exitApplication,
title = "Meldestelle - Desktop Application"
) {
App()
}
}