2022-09-16 15:28:39 +00:00
|
|
|
import { useWindowSize } from 'web/hooks/use-window-size'
|
|
|
|
|
2022-09-16 22:21:07 +00:00
|
|
|
// matches talwind sm breakpoint
|
2022-09-16 15:28:39 +00:00
|
|
|
export function useIsMobile() {
|
|
|
|
const { width } = useWindowSize()
|
2022-09-16 22:21:07 +00:00
|
|
|
return (width ?? 0) < 640
|
2022-09-16 15:30:09 +00:00
|
|
|
}
|