@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 AdMediaNativeComponent;
const globalView = getCachedNativeView();
if (__DEV__ && !globalView) {
AdMediaNativeComponent = requireNativeComponent(RES.VIEW_MANAGERS.MEDIA);
cacheNativeView(AdMediaNativeComponent);
} else if (__DEV__ && getCachedNativeView()) {
AdMediaNativeComponent = getCachedNativeView();
} else {
AdMediaNativeComponent = requireNativeComponent(RES.VIEW_MANAGERS.MEDIA);
}
export default AdMediaNativeComponent;
//# sourceMappingURL=AdMediaNativeComponent.js.map