export enum GlobalActionCode {
  BACK = 'back',
}

export const GLOBAL_ACTIONS = [
  { label: 'Volver', value: GlobalActionCode.BACK },
];
