struct TipButton: Tip {
   var title: Text {
      Text("Press to Save")
   }
   var message: Text? {
      Text("Press this button to save your progress.")
   }
   var actions: [Action] {
      [Action(id: "tipButton", title: "More Into")]
   }
}