mirror of
https://github.com/XcodesOrg/XcodesApp.git
synced 2026-04-04 10:35:50 +00:00
11 lines
152 B
Swift
11 lines
152 B
Swift
import Cocoa
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct XcodesApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
}
|
|
}
|
|
}
|