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