Files
swiftapp/SocialIO/Sources/App/SocialIOApp.swift
T
2026-04-17 20:46:27 +02:00

20 lines
421 B
Swift

import SwiftUI
@main
struct SocialIOApp: App {
@State private var model = AppViewModel()
var body: some Scene {
WindowGroup {
MailRootView(model: model)
.tint(MailTheme.accent)
.onOpenURL { url in
model.apply(url: url)
}
}
#if os(macOS)
.defaultSize(width: 1440, height: 900)
#endif
}
}