]> git.r.bdr.sh - rbdr/map/blob - Map/Views/MapApp.swift
Add sidebar menu
[rbdr/map] / Map / Views / MapApp.swift
1 //
2 // MapApp.swift
3 // Map
4 //
5 // Created by Ruben Beltran del Rio on 2/1/21.
6 //
7
8 import SwiftUI
9
10 @main
11 struct MapApp: App {
12 let persistenceController = PersistenceController.shared
13
14 var body: some Scene {
15 WindowGroup {
16 ContentView()
17 .environment(\.managedObjectContext, persistenceController.container.viewContext)
18 .environmentObject(AppStore(initialState: AppState(), reducer: appStateReducer))
19 }.windowStyle(HiddenTitleBarWindowStyle()).commands {
20 SidebarCommands()
21 }
22 }
23 }