UNPKG

react-native-reanimated

Version:

More powerful alternative to Animated library for React Native.

13 lines (12 loc) 399 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;