import SwiftUI
import MapKit

struct ContentView: View {
   var body: some View {
      Map()
         .ignoresSafeArea()
   }
}