Private
Public Access
1
0
Files
Kordophone/kordophone2/ContentView.swift

25 lines
394 B
Swift
Raw Normal View History

2025-08-24 11:16:20 -07:00
//
// ContentView.swift
// kordophone2
//
// Created by James Magahern on 8/24/25.
//
import SwiftUI
struct ContentView: View {
var body: some View {
VStack {
Image(systemName: "globe")
.imageScale(.large)
.foregroundStyle(.tint)
Text("Hello, world!")
}
.padding()
}
}
#Preview {
ContentView()
}