1import React from 'react'
2import {View} from 'react-native'
3import Animated from 'react-native-reanimated'
4
5export const FlatList_INTERNAL = Animated.FlatList
6export const ScrollView = Animated.ScrollView
7export function CenteredView(props) {
8 return <View {...props} />
9}