14 lines
155 B
Swift
14 lines
155 B
Swift
import SwiftUI
|
|
|
|
@MainActor
|
|
@main
|
|
struct AppMain: App {
|
|
private let appState = AppState()
|
|
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
if false {}
|
|
}
|
|
}
|
|
}
|