ios project skeleton

This commit is contained in:
2026-02-19 22:38:45 -08:00
parent 9d59b9dbb2
commit b91b03b74f
8 changed files with 123 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
//
// SplitView.swift
// Sybil
//
// Created by James Magahern on 2/19/26.
//
import SwiftUI
public struct SplitView: View
{
public init() {
}
public var body: some View {
Text("Not Yet Implemented: replace me.")
}
}