// // Comedores_SocialesApp.swift // Comedores Sociales // // Created by Hector Carrion on 10/24/20. // // This is the new SceneDelegate / AppDelegate import SwiftUI @main struct Comedores_SocialesApp: App { @StateObject var userSettings = UserSettings() var body: some Scene { WindowGroup { ContentView() .environmentObject(userSettings) } } }