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

25 lines
383 B
Swift

//
// ContentView.swift
// MoonWatch
//
// Created by david on 4/26/26.
//
import SwiftUI
struct ContentView: View {
var body: some View {
VStack {
Image(systemName: "globe")
.imageScale(.large)
.foregroundStyle(.tint)
Text("Hello, world!")
}
.padding()
}
}
#Preview {
ContentView()
}