crane-cloud/frontend

View on GitHub
src/helpers/projecttypes.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%

export const retrieveProjectTypes = () => {
    const types = [
        { name: "Personal", id: 1, value: "Personal" },
        { name: "Student", id: 2, value: "Student" },
        { name: "Commercial", id: 3, value: "Commercial" },
        { name: "Charity", id: 4, value: "Charity" },
        { name: "Research", id: 5, value: "Research" },
        { name: "Others, please specify below", id: 6, value: "Others" },
      ];
      return types;  
 };