This commit is contained in:
2025-04-13 23:33:29 +08:00
commit dc71bb19a9
51 changed files with 1544 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package com.taskttl
import androidx.compose.ui.window.Window
import androidx.compose.ui.window.application
fun main() = application {
Window(
onCloseRequest = ::exitApplication,
title = "TaskTTL",
) {
App()
}
}