UNPKG

react-native-reanimated

Version:

More powerful alternative to Animated library for React Native.

10 lines (7 loc) 287 B
'use strict'; import { IS_JEST } from '../common'; import { createJSReanimatedModule } from './js-reanimated'; import { createNativeReanimatedModule } from './NativeReanimated'; export const ReanimatedModule = IS_JEST ? createJSReanimatedModule() : createNativeReanimatedModule();