mirror of
https://github.com/XcodesOrg/XcodesApp.git
synced 2026-03-25 08:55:46 +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()
|
|
}
|
|
}
|
|
}
|