mirror of
https://github.com/fromchat-messenger/app.git
synced 2026-09-23 11:35:06 +03:00
12 lines
137 B
Swift
12 lines
137 B
Swift
import SwiftUI
|
|
|
|
@main
|
|
struct iOSApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
|
|
}
|
|
}
|
|
}
|