Private
Public Access
1
0

Initial Commit

This commit is contained in:
2025-08-24 11:16:20 -07:00
commit fc62f0533d
7 changed files with 452 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
//
// 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()
}