12 lines
311 B
JavaScript
12 lines
311 B
JavaScript
import React from 'react'
|
|
import {View} from 'react-native'
|
|
import Animated from 'react-native-reanimated'
|
|
|
|
export const FlatList_INTERNAL = Animated.FlatList
|
|
export function CenteredView(props) {
|
|
return <View {...props} />
|
|
}
|
|
|
|
export function ScrollView(props) {
|
|
return <Animated.ScrollView {...props} />
|
|
}
|