import SwiftUI @main struct AdminKaMacApp: App { var body: some Scene { WindowGroup { RootView() .frame(minWidth: 420, idealWidth: 520, maxWidth: .infinity, minHeight: 640, idealHeight: 860, maxHeight: .infinity) } .windowResizability(.contentSize) .commands { CommandGroup(replacing: .newItem) {} } } }