12 lines
279 B
JavaScript
12 lines
279 B
JavaScript
export const ProjectCategory = {
|
|
SOFTWARE: 'software',
|
|
MARKETING: 'marketing',
|
|
BUSINESS: 'business',
|
|
};
|
|
|
|
export const ProjectCategoryCopy = {
|
|
[ProjectCategory.SOFTWARE]: 'Software',
|
|
[ProjectCategory.MARKETING]: 'Marketing',
|
|
[ProjectCategory.BUSINESS]: 'Business',
|
|
};
|