.commands {
   CommandMenu("Options") {
      Button("Option 1", systemImage: "1.circle", action: {
         print("This is the option 1")
      })
      Menu("Option 2", systemImage: "2.circle", content: {
         Button("Option A", systemImage: "a.circle", action: {
            print("This is the option A")
         })
         Button("Option B", systemImage: "b.circle", action: {
            print("This is the option B")
         })
      })
   }
}