import SwiftUI @main struct OreCalendarApp: App { var body: some Scene { WindowGroup { ContentView() .frame(minWidth: 600, minHeight: 400) } } }