BlueWallet/__mocks__/react-native-localize.ts
2024-03-10 17:44:22 +00:00

9 lines
344 B
TypeScript

const getLocales = () => [
// you can choose / add the locales you want
{ countryCode: 'US', languageTag: 'en-US', languageCode: 'en', isRTL: false },
{ countryCode: 'FR', languageTag: 'fr-FR', languageCode: 'fr', isRTL: false },
];
const getCurrencies = () => ['USD', 'EUR']; // can be empty array
export { getLocales, getCurrencies };