mirror of
https://github.com/status-im/react-native-i18n.git
synced 2025-01-10 04:05:56 +00:00
11 lines
225 B
JavaScript
11 lines
225 B
JavaScript
// @flow
|
|
|
|
import { NativeModules } from 'react-native';
|
|
import I18n from 'i18n-js';
|
|
const { RNI18n } = NativeModules;
|
|
|
|
I18n.locale = RNI18n.languages[0];
|
|
|
|
export const getLanguages = RNI18n.getLanguages;
|
|
export default I18n;
|