Mercurial > public > geoquiz
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/GeoQuiz/ProfileModalView.swift Thu Sep 29 12:00:17 2022 +0200 @@ -0,0 +1,20 @@ +// +// ProfileModalView.swift +// GeoQuiz +// +// Created by Dennis Concepción Martín on 25/9/22. +// + +import SwiftUI + +struct ProfileModalView: View { + var body: some View { + Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) + } +} + +struct ProfileView_Previews: PreviewProvider { + static var previews: some View { + ProfileModalView() + } +}