blob: 2984a2d2d140771189ee80a7717937218a7edcda (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
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} />
}
|