import SwiftUI @main struct OptionsSidekickApp: App { @UIApplicationDelegateAdaptor(AppDelegate.self) var appDelegate var body: some Scene { WindowGroup { ContentView() .environmentObject(NotificationHandler.shared) } } }