about summary refs log tree commit diff
path: root/src/view/com/util/Views.d.ts
blob: 16713921fbe827d3171b5315608d1916f7903fe9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import React from 'react'
import {ViewProps} from 'react-native'
export {FlatList as FlatList_INTERNAL, ScrollView} from 'react-native'
export function CenteredView({
  style,
  sideBorders,
  ...props
}: React.PropsWithChildren<
  ViewProps & {sideBorders?: boolean; topBorder?: boolean}
>)