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,17 @@
//
// kordophone2App.swift
// kordophone2
//
// Created by James Magahern on 8/24/25.
//
import SwiftUI
@main
struct kordophone2App: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}