UNPKG

react-native-reanimated

Version:

More powerful alternative to Animated library for React Native.

13 lines (10 loc) 342 B
'use strict'; import type { HostComponent, ViewProps } from 'react-native'; import { codegenNativeComponent } from 'react-native'; interface NativeProps extends ViewProps { isActive: boolean; } export default codegenNativeComponent<NativeProps>( 'REASharedTransitionBoundary', { interfaceOnly: true } ) as HostComponent<NativeProps>;