const formatCurrency = (value: number) => { return Math.round(value).toLocaleString('id-ID'); }; export default formatCurrency;