comparison GeoQuiz/ProfileModalView.swift @ 6:1946bbfde4af

reformat data structures
author Dennis C. M. <dennis@denniscm.com>
date Thu, 29 Sep 2022 12:00:17 +0200
parents
children e09959b4e4a8
comparison
equal deleted inserted replaced
5:f31a61462e7a 6:1946bbfde4af
1 //
2 // ProfileModalView.swift
3 // GeoQuiz
4 //
5 // Created by Dennis Concepción Martín on 25/9/22.
6 //
7
8 import SwiftUI
9
10 struct ProfileModalView: View {
11 var body: some View {
12 Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
13 }
14 }
15
16 struct ProfileView_Previews: PreviewProvider {
17 static var previews: some View {
18 ProfileModalView()
19 }
20 }