aboutsummaryrefslogtreecommitdiff
path: root/Map/Views/DefaultMapView.swift
diff options
context:
space:
mode:
authorRuben Beltran del Rio <ruben@unlimited.pizza>2023-05-07 15:22:54 +0200
committerRuben Beltran del Rio <ruben@unlimited.pizza>2023-05-07 15:22:54 +0200
commitfdb4633d3e9158e457d57e820df6e1efb4df39c2 (patch)
tree176cad99cb9befc0a65a7af02561019e811814de /Map/Views/DefaultMapView.swift
parent75a0e4509a70055851b085f3f7293ae1cf48164c (diff)
Update to support notes + new style2.0.0
Diffstat (limited to 'Map/Views/DefaultMapView.swift')
-rw-r--r--Map/Views/DefaultMapView.swift23
1 files changed, 0 insertions, 23 deletions
diff --git a/Map/Views/DefaultMapView.swift b/Map/Views/DefaultMapView.swift
deleted file mode 100644
index 1f624d2..0000000
--- a/Map/Views/DefaultMapView.swift
+++ /dev/null
@@ -1,23 +0,0 @@
-//
-// ContentView.swift
-// Map
-//
-// Created by Ruben Beltran del Rio on 2/1/21.
-//
-
-import CoreData
-import SwiftUI
-
-struct DefaultMapView: View {
-
- var body: some View {
- Text("Select a map from the left hand side, or click on + to create one.")
- }
-}
-
-struct DefaultMapView_Previews: PreviewProvider {
- static var previews: some View {
- DefaultMapView().environment(
- \.managedObjectContext, PersistenceController.preview.container.viewContext)
- }
-}