react-native-mock-tmp-build
Version:
A fully mocked and test-friendly version of react native
14 lines (12 loc) • 454 B
JavaScript
import View from '../../components/View';
import Text from '../../components/Text';
import Image from '../../components/Image';
import createAnimatedComponent from './createAnimatedComponent';
import AnimatedImplementation from './AnimatedImplementation';
module.exports = {
...AnimatedImplementation,
createAnimatedComponent,
View: createAnimatedComponent(View),
Text: createAnimatedComponent(Text),
Image: createAnimatedComponent(Image),
};