Initial commit
This commit is contained in:
13
composeApp/src/jvmMain/kotlin/dev/ulfrx/recipe/main.kt
Normal file
13
composeApp/src/jvmMain/kotlin/dev/ulfrx/recipe/main.kt
Normal file
@@ -0,0 +1,13 @@
|
||||
package dev.ulfrx.recipe
|
||||
|
||||
import androidx.compose.ui.window.Window
|
||||
import androidx.compose.ui.window.application
|
||||
|
||||
fun main() = application {
|
||||
Window(
|
||||
onCloseRequest = ::exitApplication,
|
||||
title = "recipe",
|
||||
) {
|
||||
App()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user