revamp template
This commit is contained in:
28
src/utils/List.ts
Normal file
28
src/utils/List.ts
Normal file
@ -0,0 +1,28 @@
|
||||
export function statusCreditList() {
|
||||
return [
|
||||
{
|
||||
label: 'Draft',
|
||||
value: 'draft'
|
||||
},
|
||||
{
|
||||
label: 'Open',
|
||||
value: 'open'
|
||||
},
|
||||
{
|
||||
label: 'Under Review',
|
||||
value: 'under_review'
|
||||
},
|
||||
{
|
||||
label: 'Revision',
|
||||
value: 'revision'
|
||||
},
|
||||
{
|
||||
label: 'Approved',
|
||||
value: 'approved'
|
||||
},
|
||||
{
|
||||
label: 'Rejected',
|
||||
value: 'rejected'
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user