// Copyright 2018-present 650 Industries. All rights reserved. #import #import #if __has_include() #import #elif __has_include() // for importing the header from framework, the dash will be transformed to underscore #import #else // react-native < 0.72 #import #endif UIView *EXAppSetupDefaultRootView(RCTBridge *bridge, NSString *moduleName, NSDictionary *initialProperties, BOOL fabricEnabled) { #if REACT_NATIVE_MINOR_VERSION >= 71 return RCTAppSetupDefaultRootView(bridge, moduleName, initialProperties, fabricEnabled); #else return RCTAppSetupDefaultRootView(bridge, moduleName, initialProperties); #endif // REACT_NATIVE_MINOR_VERSION >= 71 }