Bluesky app fork with some witchin' additions 馃挮
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 10 lines 258 B view raw
1import {View} from 'react-native' 2 3import {atoms as a, type ViewStyleProp} from '#/alf' 4 5export function Fill({ 6 children, 7 style, 8}: {children?: React.ReactNode} & ViewStyleProp) { 9 return <View style={[a.absolute, a.inset_0, style]}>{children}</View> 10}