Created the cross-platform Sample App target in the Xcode project.

This commit is contained in:
2026-07-03 15:11:33 +02:00
parent 53ff7c5198
commit 9cd731e6fc
6 changed files with 418 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import SwiftUI
@main
struct AttendiApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}