Bluesky app fork with some witchin' additions 馃挮
witchsky.app
bluesky
fork
client
1import {View} from 'react-native'
2
3import {useWebMediaQueries} from '#/lib/hooks/useWebMediaQueries'
4import {FABInner, type FABProps} from './FABInner'
5
6export const FAB = (_opts: FABProps) => {
7 const {isDesktop} = useWebMediaQueries()
8
9 if (!isDesktop) {
10 return <FABInner {..._opts} />
11 }
12
13 return <View />
14}