useMobile.d.ts 237 B

123456
  1. /**
  2. * Hook to detect if the user is on a mobile device
  3. * Notice that this hook will only detect the device type in effect, so it will always be false in server side
  4. */
  5. declare const useMobile: () => boolean;
  6. export default useMobile;