b8f36a8bca
* add `topBorder` to Views.tsx * fix double border
11 lines
292 B
TypeScript
11 lines
292 B
TypeScript
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}
|
|
>)
|