From fdb4633d3e9158e457d57e820df6e1efb4df39c2 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Sun, 7 May 2023 15:22:54 +0200 Subject: Update to support notes + new style --- Map/Views/MapApp.swift | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 Map/Views/MapApp.swift (limited to 'Map/Views/MapApp.swift') diff --git a/Map/Views/MapApp.swift b/Map/Views/MapApp.swift deleted file mode 100644 index a0e2d60..0000000 --- a/Map/Views/MapApp.swift +++ /dev/null @@ -1,23 +0,0 @@ -// -// MapApp.swift -// Map -// -// Created by Ruben Beltran del Rio on 2/1/21. -// - -import SwiftUI - -@main -struct MapApp: App { - let persistenceController = PersistenceController.shared - - var body: some Scene { - WindowGroup { - ContentView() - .environment(\.managedObjectContext, persistenceController.container.viewContext) - .environmentObject(AppStore(initialState: AppState(), reducer: appStateReducer)) - }.windowStyle(HiddenTitleBarWindowStyle()).commands { - SidebarCommands() - } - } -} -- cgit