Newer
Older
NocodeToolOnRDL / src / constants / activeTab.ts
@Sakoda2269 Sakoda2269 11 days ago 154 bytes reactに移行完了
export const ActiveTab = {
    GENERAL: 0,
    STYLE: 1,
    ACTION: 2,
} as const;

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