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