mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-27 17:00:54 +01:00
3 lines
163 B
TypeScript
3 lines
163 B
TypeScript
export const onboardingSteps = ["start", "import", "user", "group", "settings", "finish"] as const;
|
|
export type OnboardingStep = (typeof onboardingSteps)[number];
|