import SwiftUI @main struct BusyMirrorApp: App { var body: some Scene { WindowGroup { ContentView() .frame(minWidth: 720, minHeight: 520) } } }