PromucFlow_constructor/app/client/src/pages/setup/constants.ts

51 lines
769 B
TypeScript
Raw Normal View History

export type OptionType = {
label?: string;
value?: string;
};
export const roleOptions: OptionType[] = [
{
label: "Engineer",
value: "engineer",
},
{
label: "Product manager",
value: "product manager",
},
{
label: "Founder",
value: "founder",
},
{
label: "Operations",
value: "operations",
},
{
label: "Business Analyst",
value: "business analyst",
},
{
label: "Other",
value: "other",
},
];
export const useCaseOptions: OptionType[] = [
{
label: "Just Exploring",
value: "just exploring",
},
{
label: "Personal Project",
value: "personal project",
},
{
label: "Work Project",
value: "work project",
},
{
label: "Other",
value: "other",
},
];