Files
TachideskJUI/iosApp/iosApp/iOSApp.swift
2023-12-01 19:30:30 -05:00

10 lines
108 B
Swift

import SwiftUI
@main
struct iOSApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}