mirror of
https://github.com/sudosylabs/vnidrop.git
synced 2026-08-05 02:29:55 +02:00
Baseline Compose Multiplatform Iroh migration
This commit is contained in:
13
desktopApp/src/main/kotlin/com/vnidrop/app/main.kt
Normal file
13
desktopApp/src/main/kotlin/com/vnidrop/app/main.kt
Normal file
@@ -0,0 +1,13 @@
|
||||
package com.vnidrop.app
|
||||
|
||||
import androidx.compose.ui.window.Window
|
||||
import androidx.compose.ui.window.application
|
||||
|
||||
fun main() = application {
|
||||
Window(
|
||||
onCloseRequest = ::exitApplication,
|
||||
title = "vnidrop",
|
||||
) {
|
||||
App()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user