import SwiftUI @main struct QStatusApp: App { @NSApplicationDelegateAdaptor(AppDelegate.self) var appDelegate var body: some Scene { MenuBarExtra("qStatus", systemImage: "bubble.left.and.text.bubble.right") { MenuBarView( accountStore: appDelegate.accountStore, onOpenPanel: { appDelegate.showPanel() }, onOpenSettings: { appDelegate.showSettings() } ) } Settings { SettingsView(accountStore: appDelegate.accountStore) } } }