Files
Moon-Watch/MoonWatch/MoonWatchApp.swift
2026-04-26 10:15:16 -07:00

18 lines
222 B
Swift

//
// MoonWatchApp.swift
// MoonWatch
//
// Created by david on 4/26/26.
//
import SwiftUI
@main
struct MoonWatchApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}