13 lines
171 B
Swift
13 lines
171 B
Swift
import SwiftUI
|
|
|
|
#if !os(macOS)
|
|
@MainActor
|
|
@main
|
|
struct BurrowApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
BurrowView()
|
|
}
|
|
}
|
|
}
|
|
#endif
|