mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
1import React from 'react'
2import {ViewProps} from 'react-native'
3export {FlatList as FlatList_INTERNAL, ScrollView} from 'react-native'
4export function CenteredView({
5 style,
6 sideBorders,
7 ...props
8}: React.PropsWithChildren<
9 ViewProps & {
10 /**
11 * @platform web
12 */
13 sideBorders?: boolean
14 /**
15 * @platform web
16 */
17 topBorder?: boolean
18 }
19>)