applanga-react-native
Version:
Applanga's SDK for React-Native
17 lines (11 loc) • 363 B
JavaScript
;
import { NativeModules } from 'react-native';
export const { Applanga } = NativeModules;
if(typeof Applanga === 'undefined'){
console.warn('applanga-react-native module is not correctly linked');
}
const nativeUpdate = Applanga.update;
Applanga.update = (languages = null) => {
return nativeUpdate(languages);
};
export default Applanga;