mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
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}