diff GeoQuiz/GuessThePopulationView.swift @ 7:d945e52b0704

implement dynamic map
author Dennis C. M. <dennis@denniscm.com>
date Tue, 04 Oct 2022 18:54:24 +0200
parents GeoQuiz/GuessThePopulation.swift@1946bbfde4af
children e09959b4e4a8
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/GeoQuiz/GuessThePopulationView.swift	Tue Oct 04 18:54:24 2022 +0200
@@ -0,0 +1,20 @@
+//
+//  GuessThePopulationView.swift
+//  GeoQuiz
+//
+//  Created by Dennis Concepción Martín on 29/9/22.
+//
+
+import SwiftUI
+
+struct GuessThePopulationView: View {
+    var body: some View {
+        Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
+    }
+}
+
+struct GuessThePopulation_Previews: PreviewProvider {
+    static var previews: some View {
+        GuessThePopulationView()
+    }
+}