()
| 23 | |
| 24 | /** 768px – 1023px */ |
| 25 | export function useIsTablet(): boolean { |
| 26 | return useMediaQuery("(min-width: 768px) and (max-width: 1023px)"); |
| 27 | } |
| 28 | |
| 29 | /** >= 1024px */ |
| 30 | export function useIsDesktop(): boolean { |
nothing calls this directly
no test coverage detected