export const reportStatusData = { ALL: { index: -1, text: 'ALL', description: '전체', }, PROCESS: { index: 0, text: 'PROCESS', description: '승인 대기', }, FINISH: { index: 1, text: 'FINISH', description: '승인 완료', }, REJECT: { index: 2, text: 'REJECT', description: '승인 반려', }, }; Object.freeze(reportStatusData);