1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-04 00:18:01 +01:00
unleash.unleash/frontend/src/component/splash/splash.tsx

8 lines
224 B
TypeScript
Raw Normal View History

// All known splash IDs.
export const splashIds = ['operators'] as const;
// Active splash IDs that may be shown to the user.
export const activeSplashIds: SplashId[] = [];
export type SplashId = typeof splashIds[number];