()
| 59 | |
| 60 | // Hook to detect if device is tablet |
| 61 | export function useIsTablet(): boolean { |
| 62 | const deviceType = useDeviceType(); |
| 63 | return deviceType === 'tablet'; |
| 64 | } |
| 65 | |
| 66 | // Hook to detect landscape orientation |
| 67 | export function useIsLandscape(): boolean { |
no test coverage detected