* Fix error-state rendering of ProfileList * Unsave/unpin lists on delete * Improve handling of failing feedgens * Only show 'remove' btn on feed DNE
8 lines
246 B
TypeScript
8 lines
246 B
TypeScript
import React from 'react'
|
|
import {ViewProps} from 'react-native'
|
|
export {FlatList, ScrollView} from 'react-native'
|
|
export function CenteredView({
|
|
style,
|
|
sideBorders,
|
|
...props
|
|
}: React.PropsWithChildren<ViewProps & {sideBorders?: boolean}>)
|