fitness_app/FitnessApp/FitnessAppApp.swift
2024-12-20 09:32:13 -06:00

18 lines
231 B
Swift

//
// FitnessAppApp.swift
// FitnessApp
//
// Created by Matt Bruce on 12/20/24.
//
import SwiftUI
@main
struct FitnessAppApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}