export default { name: 'time-tracking-help-state', props: { rootPath: { type: String, required: true, }, }, computed: { href() { return `${this.rootPath}help/workflow/time_tracking.md`; }, }, template: `

Track time with quick actions

Quick actions can be used in the issues description and comment boxes.

/estimate will update the estimated time with the latest command.

/spend will update the sum of the time spent.

Learn more
`, };