manifold/web/hooks/use-is-mobile.ts
2022-09-16 15:30:09 +00:00

7 lines
157 B
TypeScript

import { useWindowSize } from 'web/hooks/use-window-size'
export function useIsMobile() {
const { width } = useWindowSize()
return (width ?? 0) < 600
}