@beletsky/react-native-yandex-ads
Version:
16 lines • 658 B
JavaScript
import { requireNativeComponent } from 'react-native';
import { cacheNativeView, getCachedNativeView } from '../utils';
// @ts-ignore
import RES from '../resources';
let AdImageNativeComponent;
const globalView = getCachedNativeView();
if (__DEV__ && !globalView) {
AdImageNativeComponent = requireNativeComponent(RES.VIEW_MANAGERS.IMAGE);
cacheNativeView(AdImageNativeComponent);
} else if (__DEV__ && getCachedNativeView()) {
AdImageNativeComponent = getCachedNativeView();
} else {
AdImageNativeComponent = requireNativeComponent(RES.VIEW_MANAGERS.IMAGE);
}
export default AdImageNativeComponent;
//# sourceMappingURL=AdImageNativeComponent.js.map