mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
0
fork

Configure Feed

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

at rnw 8 lines 299 B view raw
1import React from 'react' 2import {GestureResponderEvent, View} from 'react-native' 3import {IconProp} from '@fortawesome/fontawesome-svg-core' 4 5type OnPress = ((event: GestureResponderEvent) => void) | undefined 6export const FAB = (_opts: {icon: IconProp; onPress: OnPress}) => { 7 return <View /> 8}