fitness_app/FitnessApp/ProfileView.swift
Matt Bruce 9b0287f038 initial start screen
Signed-off-by: Matt Bruce <mbrucedogs@gmail.com>
2024-12-20 13:19:36 -06:00

18 lines
215 B
Swift

//
// ProfileView.swift
// FitnessApp
//
// Created by Matt Bruce on 12/20/24.
//
import SwiftUI
struct ProfileView: View {
var body: some View {
Text("Profile")
}
}
#Preview {
HomeView()
}