aboutsummaryrefslogtreecommitdiff
path: root/src/components/hooks/useMobile.ts
blob: 6b40f3da142bc03f9cec1741b3c31d2d05e2e687 (plain) (blame)
1
2
3
4
5
6
7
8
9
import { useBreakpoint } from '@umami/react-zen';

export function useMobile() {
  const breakpoint = useBreakpoint();
  const isMobile = ['xs', 'sm', 'md'].includes(breakpoint);
  const isPhone = ['xs', 'sm'].includes(breakpoint);

  return { breakpoint, isMobile, isPhone };
}