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