export function formatNumber(value: number | null | undefined) {
  return new Intl.NumberFormat("id-ID").format(value || 0);
}