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

51 lines
833 B
TypeScript
Raw Normal View History

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