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

Configure Feed

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

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