UNPKG

create-nova-vite-template

Version:

This is a dashboard template built with React and Vite. It provides a modern and responsive user interface for building web applications.

6 lines (4 loc) 175 B
import i18n from "@/i18n"; export default function toCurrency(price: number | null | undefined) { return price ? `${i18n.t("main")} ${price.toLocaleString()}` : ""; }