1
2
3
export const formatNumber = (value) => {
  return new Intl.NumberFormat('en-US').format(value);
}