PromucFlow_constructor/app/client/src/pages/setup/constants.ts
2023-03-15 16:49:30 +05:30

51 lines
833 B
TypeScript

export type OptionType = {
label?: string;
value?: string;
};
export const roleOptions: OptionType[] = [
{
label: "Frontend (HTML/JS/React)",
value: "frontend engineer",
},
{
label: "Backend (APIs/Databases)",
value: "backend engineer",
},
{
label: "Fullstack",
value: "fullstack engineer",
},
{
label: "SQL Queries & Basic Coding",
value: "business analyst",
},
{
label: "Non Technical",
value: "non technical",
},
{
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",
},
];