formatPrice
Formats a price as a string in the format "$X.YY", with two decimal places.
Usage
import formatPrice from "@airsoko/react";
const price = 10.5;
const formattedPrice = formatPrice(price);
console.log(formattedPrice); // Output: $10.50Parameters
price: The price to format.
Returns
The formatted price as a string.