Files
PrivateChat/apple-client/Sources/App/PrivateChatAppleApp.swift
2026-03-09 19:35:08 +01:00

19 lines
288 B
Swift

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
}
}