about summary refs log tree commit diff
path: root/src/view/com/util/Views.jsx
blob: 8a93ce511286ba086bf7841955628d8b24144989 (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 = Animated.FlatList
export const ScrollView = Animated.ScrollView
export function CenteredView(props) {
  return <View {...props} />
}