hensei-web/utils/enums.tsx
Justin Edmund f0ba0d5eb3 Don't switch tabs when creating a party
We changed the method in the New route to use the Next.js Router, which is causing us to navigate to the Party route and causing issues. This change makes it so that users stay on the same tab when they reach their destination.
2023-01-30 23:09:37 -08:00

26 lines
265 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,
}