Initial TonUinoNator app

This commit is contained in:
Mikei386
2026-06-07 10:53:55 +02:00
commit 5a02abf26e
6 changed files with 629 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import SwiftUI
@main
struct TonUinoNatorApp: App {
var body: some Scene {
WindowGroup {
ContentView()
.frame(minWidth: 900, minHeight: 620)
}
.windowStyle(.titleBar)
}
}