fitness_app/FitnessApp/FitnessAppApp.swift
Matt Bruce 0c5e3dae74 added healthkit
Signed-off-by: Matt Bruce <mbrucedogs@gmail.com>
2024-12-21 10:31:16 -06:00

18 lines
254 B
Swift

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