ReaderForSelfoss-multiplatform/iosApp/iosApp/iOSApp.swift

10 lines
108 B
Swift
Raw Normal View History

2022-03-22 14:35:23 +00:00
import SwiftUI
@main
struct iOSApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}