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