export const formatPrice = (price: number): any => {
  try {
    const priceFormatTemplate = "%@ €";
    const selPrice = price ? (Math.round(price * 100) / 100).toFixed(2) : 0;

    return priceFormatTemplate?.replace("%@", selPrice.toString());
  } catch (e) {
    return;
  }
};
