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