export function formatPrice(value: number) { // цены храним в копейках const rubles = value / 100 return rubles.toFixed(2) + " ₽"}