import { Animated as RNAnimated } from 'react-native'
import { FlatList } from './FlatList'
import { Image } from './Image'
import { ScrollView } from './ScrollView'
import { SectionList } from './SectionList'
import { Text } from './Text'
import { View } from './View'
// source: https://github.com/necolas/react-native-web/tree/master/packages/react-native-web/src/vendor/react-native/Animated/components
export const Animated = {
...RNAnimated,
FlatList: RNAnimated.createAnimatedComponent((props) => ),
ScrollView: RNAnimated.createAnimatedComponent((props) => ),
SectionList: RNAnimated.createAnimatedComponent((props) => ),
Image: RNAnimated.createAnimatedComponent(Image),
Text: RNAnimated.createAnimatedComponent(Text),
View: RNAnimated.createAnimatedComponent(View),
}