export const formatCurrency = (value: number | string) => { const num = typeof value === 'string' ? parseInt(value) : value; return num.toLocaleString('vi-VN'); };