UNPKG

react-native-reanimated

Version:

More powerful alternative to Animated library for React Native.

14 lines (11 loc) 395 B
import { NativeModules } from 'react-native'; import ReanimatedModuleCompat from './ReanimatedModuleCompat'; import { nativeShouldBeMock } from './reanimated2/PlatformChecker'; let exportedModule; if (nativeShouldBeMock()) { exportedModule = ReanimatedModuleCompat; } else { const { ReanimatedModule } = NativeModules; exportedModule = ReanimatedModule; } export default exportedModule;