Files
Schnappix/node_modules/react-native-reanimated/lib/module/component/Text.js
T

10 lines
409 B
JavaScript

'use strict';
import { Text } from 'react-native';
import { createAnimatedComponent } from '../createAnimatedComponent';
// Since createAnimatedComponent return type is ComponentClass that has the props of the argument,
// but not things like NativeMethods, etc. we need to add them manually by extending the type.
export const AnimatedText = createAnimatedComponent(Text);
//# sourceMappingURL=Text.js.map