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 mod-auth 14 lines 337 B view raw
1import React from 'react' 2import {View} from 'react-native' 3import {FABInner, FABProps} from './FABInner' 4import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries' 5 6export const FAB = (_opts: FABProps) => { 7 const {isDesktop} = useWebMediaQueries() 8 9 if (!isDesktop) { 10 return <FABInner {..._opts} /> 11 } 12 13 return <View /> 14}