react-native-reanimated
Version:
More powerful alternative to Animated library for React Native.
10 lines (7 loc) • 312 B
text/typescript
import { shouldBeUseWeb } from '../PlatformChecker';
import { createJSReanimatedModule } from './js-reanimated';
import { createNativeReanimatedModule } from './NativeReanimated';
export const ReanimatedModule = shouldBeUseWeb()
? createJSReanimatedModule()
: createNativeReanimatedModule();
;