create-expo-cljs-app
Version:
Create a react native application with Expo and Shadow-CLJS!
10 lines (9 loc) • 374 B
JavaScript
import { Image, ScrollView, Text, View } from 'react-native';
import createAnimatedComponent from '../../createAnimatedComponent';
const WrappedComponents = {
View: createAnimatedComponent(View),
Text: createAnimatedComponent(Text),
Image: createAnimatedComponent(Image),
ScrollView: createAnimatedComponent(ScrollView),
};
export default WrappedComponents;