refactor: composeApp -> ui

This commit is contained in:
Cilly Leang 2026-01-23 23:31:31 +11:00
parent 6f5e4499d9
commit 61bb748925
Signed by: cilly
GPG key ID: 6500251E087653C9
27 changed files with 1 additions and 1 deletions

View file

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