initial commit

This commit is contained in:
FirephoenixX02 2024-04-11 13:55:19 +02:00
commit f72938cffb
71 changed files with 1404 additions and 0 deletions

View file

@ -0,0 +1,9 @@
import androidx.compose.runtime.Composable
import androidx.compose.ui.window.Window
import androidx.compose.ui.window.application
fun main() = application {
Window(onCloseRequest = ::exitApplication, title = "PokeDex") {
App()
}
}