hensei-web/utils/enums.tsx
Justin Edmund 8164f1f0d4 Break collection pages into hooks
This refactors the collection pages (teams, saved and profiles) into a bunch of hooks that handle various chunks of functionality. This way, the actual "pages" have significantly less logic.
2024-04-21 00:42:12 -07:00

32 lines
326 B
TypeScript

export enum ButtonType {
Base,
IconOnly,
Destructive,
}
export enum GridType {
Character,
Weapon,
Summon,
}
export enum TeamElement {
Any,
Wind,
Fire,
Water,
Earth,
Dark,
Light,
}
export enum AboutTabs {
About,
Updates,
Roadmap,
}
export enum CollectionPage {
Teams,
Profile,
Saved,
}