view 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
line wrap: on
line source

//
//  ProfileView.swift
//  LazyBear
//
//  Created by Dennis Concepción Martín on 4/4/21.
//

import SwiftUI

struct ProfileView: View {
    var body: some View {
        NavigationView {
            UserProfile()
        }
    }
}

struct ProfileView_Previews: PreviewProvider {
    static var previews: some View {
        ProfileView()
    }
}