This commit is contained in:
Cilly Leang 2026-01-23 17:07:47 +11:00
commit a30f557999
Signed by: cilly
GPG key ID: 6500251E087653C9
37 changed files with 1684 additions and 0 deletions

View file

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