/ src / hooks / use-is-mobile.ts
use-is-mobile.ts
1  import useWindowWidth from './use-window-width';
2  
3  const useIsMobile = () => {
4    const windowWidth = useWindowWidth();
5    return windowWidth < 640;
6  };
7  
8  export default useIsMobile;