const EURO = new Intl.NumberFormat("fr-FR", {
  style: "currency",
  currency: "EUR",
});

export function formatEuro(cents?: number | null) {
  if (typeof cents !== "number") {
    return "Prix sur demande";
  }
  return EURO.format(cents / 100);
}


