blob: 6a90cc229b3397f87d99e62f53470b44d83eeba6 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
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}>)
|