export const  formatNumberWithCommas = (number:string) => {
    var price = parseFloat(number);
    return price.toLocaleString();
}