feat: backend MVP (auth/rbac, catalog, orders, fulfillment, invoices) + specs + scaffolds
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
/** Shopper preferences: display currency, persisted in a cookie (SSR-safe). */
|
||||
export function usePrefs() {
|
||||
const currency = useCookie<string>("vmall.currency", { default: () => "USD" });
|
||||
return { currency };
|
||||
}
|
||||
Reference in New Issue
Block a user