ConstCURRENCY_CODE_MAP_BY_LOCATION['US'] // returns 'USD'
CURRENCY_CODE_MAP_BY_LOCATION['GB'] // returns 'GBP'
export const CURRENCY_CODE_MAP_BY_LOCATION: { [key: string]: string } = Object.fromEntries(
Object.entries(locations).map(([code, { currency }]) => [code, currency as CurrencyCode]),
);
Mapping of locations to their corresponding currency codes