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.category.tsx

11 lines
244 B

export const ECategory = {
WARM_UP: "WARM_UP",
TRAINING: "TRAINING",
STRETCHING: "STRETCHING",
NONE: "NONE",
} as const;
export type ECategory = keyof typeof ECategory;
export const Categories: ECategory[] = Object.values(ECategory);