Mercurial > public > geoquiz
annotate GeoQuiz/GuessThePopulationView.swift @ 8:e09959b4e4a8
fix bugs
author | Dennis C. M. <dennis@denniscm.com> |
---|---|
date | Thu, 06 Oct 2022 11:14:34 +0200 |
parents | d945e52b0704 |
children | a793f33f05fb |
rev | line source |
---|---|
6 | 1 // |
7 | 2 // GuessThePopulationView.swift |
6 | 3 // GeoQuiz |
4 // | |
5 // Created by Dennis Concepción Martín on 29/9/22. | |
6 // | |
7 | |
8 import SwiftUI | |
9 | |
7 | 10 struct GuessThePopulationView: View { |
6 | 11 var body: some View { |
8 | 12 Text("Hello, World!") |
6 | 13 } |
14 } | |
15 | |
16 struct GuessThePopulation_Previews: PreviewProvider { | |
17 static var previews: some View { | |
7 | 18 GuessThePopulationView() |
6 | 19 } |
20 } |