const purchaseStatus = [ { id: 1, status: 'pending_payment', title: 'Pending Payment', }, { id: 2, status: 'processing', title: 'Processing', }, { id: 3, status: 'on_hold', title: 'On Hold', }, { id: 4, status: 'completed', title: 'Completed', }, { id: 5, status: 'cancelled', title: 'Cancelled', }, { id: 6, status: 'refunded', title: 'Refunded', }, { id: 7, status: 'failed', title: 'Failed', }, { id: 8, status: 'draft', title: 'Draft', }, ]; export default purchaseStatus;