UNPKG

create-expo-cljs-app

Version:

Create a react native application with Expo and Shadow-CLJS!

10 lines (9 loc) 374 B
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;