Mercurial > public > lazybear
comparison LazyBear/Views/Profile/ProfileView.swift @ 341:4e6c47a81b80
Testing UserProfile
author | Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com> |
---|---|
date | Sun, 04 Apr 2021 13:20:14 +0200 |
parents | |
children | a6c49f1409f3 |
comparison
equal
deleted
inserted
replaced
340:d17dd5c28211 | 341:4e6c47a81b80 |
---|---|
1 // | |
2 // ProfileView.swift | |
3 // LazyBear | |
4 // | |
5 // Created by Dennis Concepción Martín on 4/4/21. | |
6 // | |
7 | |
8 import SwiftUI | |
9 | |
10 struct ProfileView: View { | |
11 var body: some View { | |
12 NavigationView { | |
13 UserProfile() | |
14 } | |
15 } | |
16 } | |
17 | |
18 struct ProfileView_Previews: PreviewProvider { | |
19 static var previews: some View { | |
20 ProfileView() | |
21 } | |
22 } |