15 lines
307 B
Swift
15 lines
307 B
Swift
import SwiftUI
|
|
|
|
@main
|
|
struct MaydayApp: App {
|
|
@State private var authViewModel = AuthViewModel()
|
|
@UIApplicationDelegateAdaptor(AppDelegate.self) var appDelegate
|
|
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
.environment(authViewModel)
|
|
}
|
|
}
|
|
}
|