You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Mobile/enum/enum.target.tsx

12 lines
220 B

export const ETarget = {
LEG: "LEG",
ARM: "ARM",
CARDIO: "CARDIO",
BACK: "BACK",
NONE: "NONE",
} as const;
export type ETarget = keyof typeof ETarget;
export const Target: ETarget[] = Object.values(ETarget);