()
| 144 | |
| 145 | export const MOBILE_MAX_WIDTH = 600; |
| 146 | export function useMobileScreen() { |
| 147 | const { width } = useWindowSize(); |
| 148 | |
| 149 | return width <= MOBILE_MAX_WIDTH; |
| 150 | } |
| 151 | |
| 152 | export function isFirefox() { |
| 153 | return ( |
no test coverage detected