@main struct MyApp: App {
   var body: some Scene {
      WindowGroup {
         ContentView()
      }
      #if os(macOS)
      Settings {
         VStack {
            Text("Settings")
         }.frame(width: 200, height: 150)
      }
      #endif
   }
}