6 lines
216 B
TypeScript
6 lines
216 B
TypeScript
/** Shopper preferences: display currency, persisted in a cookie (SSR-safe). */
|
|
export function usePrefs() {
|
|
const currency = useCookie<string>("vmall.currency", { default: () => "USD" });
|
|
return { currency };
|
|
}
|