.commands {
   CommandGroup(replacing: .newItem, addition: {})
   CommandGroup(after: .newItem, addition: {
      Button("Option 1", systemImage: "1.circle", action: {
         print("This is the option 1")
      })
   })
}