Files
2026-05-31 05:37:10 +00:00

12 lines
173 B
Swift

import SwiftUI
@main
struct MyApp: App {
var body: some Scene {
WindowGroup {
Text("Hello from MyApp")
.padding()
}
}
}