Files
PrivateChat/apple-client/Sources/App/PrivateChatAppleApp.swift

19 lines
288 B
Swift
Raw Normal View History

2026-03-09 19:35:08 +01:00
import SwiftUI
@main
struct PrivateChatAppleApp: App {
@State private var settings = SettingsStore()
var body: some Scene {
WindowGroup {
ContentView(settings: settings)
}
#if os(macOS)
Settings {
SettingsView(settings: settings)
}
#endif
}
}