export const ActiveTab = {
    GENERAL: 0,
    STYLE: 1,
    ACTION: 2,
} as const;

export type ActiveTab =
    typeof ActiveTab[keyof typeof ActiveTab];