// // assign5App.swift // assign5 // // Created by Jason Kim on 5/12/22. // import SwiftUI import Firebase @main struct assign5_testApp: App { init(){ FirebaseApp.configure() } var body: some Scene { WindowGroup { ContentView() } } func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { // FirebaseApp.configure() return true } }