No Description

Comedores_SocialesApp.swift 413B

1234567891011121314151617181920212223
  1. //
  2. // Comedores_SocialesApp.swift
  3. // Comedores Sociales
  4. //
  5. // Created by Hector Carrion on 10/24/20.
  6. //
  7. // This is the new SceneDelegate / AppDelegate
  8. import SwiftUI
  9. @main
  10. struct Comedores_SocialesApp: App {
  11. @StateObject var userSettings = UserSettings()
  12. var body: some Scene {
  13. WindowGroup {
  14. ContentView()
  15. .environmentObject(userSettings)
  16. }
  17. }
  18. }