react-native-reanimated
Version:
More powerful alternative to Animated library for React Native.
7 lines (6 loc) • 374 B
JavaScript
import { shouldBeUseWeb } from "../PlatformChecker.js";
import { createJSReanimatedModule } from "./js-reanimated/index.js";
import { createNativeReanimatedModule } from "./NativeReanimated.js";
export const ReanimatedModule = shouldBeUseWeb() ? createJSReanimatedModule() : createNativeReanimatedModule();
//# sourceMappingURL=reanimatedModuleInstance.js.map
;