BlueWallet/__mocks__/react-native-localize.js

9 lines
344 B
JavaScript
Raw Normal View History

2020-06-16 00:39:13 +02:00
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 };