18 lines
215 B
Swift
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()
|
|
}
|