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,13 @@
import Sybil
import SwiftUI
import UIKit
@main
struct SybilApp: App
{
var body: some Scene {
WindowGroup {
SplitView()
}
}
}