about summary refs log tree commit diff
path: root/src/view/com/util/Views.jsx
blob: 7d6120583f599bf983dfe1a768a01f1699937a1b (plain) (blame)
1
2
3
4
5
6
7
8
9
import React from 'react'
import {View} from 'react-native'
import Animated from 'react-native-reanimated'

export const FlatList_INTERNAL = Animated.FlatList
export const ScrollView = Animated.ScrollView
export function CenteredView(props) {
  return <View {...props} />
}