| export const isTouchDevice = () => { | |
| return ( | |
| 'ontouchstart' in window || | |
| navigator.MaxTouchPoints > 0 || | |
| navigator.msMaxTouchPoints > 0 | |
| ); | |
| }; | |
| export const isTouchDevice = () => { | |
| return ( | |
| 'ontouchstart' in window || | |
| navigator.MaxTouchPoints > 0 || | |
| navigator.msMaxTouchPoints > 0 | |
| ); | |
| }; | |