Files
bsky-social-app/src/view/com/util/Views.jsx
T
2024-05-06 20:59:36 +01:00

13 lines
311 B
React

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} />
}