4 lines
125 B
TypeScript
4 lines
125 B
TypeScript
export const isMobile =
|
|
typeof window !== 'undefined' &&
|
|
window.matchMedia('only screen and (max-width: 760px)').matches
|