Skip to content

Instantly share code, notes, and snippets.

@engmagdy87
Created August 5, 2020 11:59
Show Gist options
  • Select an option

  • Save engmagdy87/8b9544d39c92478f00e70da5dd3a4d1b to your computer and use it in GitHub Desktop.

Select an option

Save engmagdy87/8b9544d39c92478f00e70da5dd3a4d1b to your computer and use it in GitHub Desktop.
const isDeviceSmart = () => {
const phone = window.matchMedia('(max-width:575px)');
const landscapePhone = window.matchMedia(
'(min-width:576px) and (max-width: 767px)'
);
const tablet = window.matchMedia(
'(min-width:768px) and (max-width: 991px)'
);
return phone.matches || landscapePhone.matches || tablet.matches
}
export default isDeviceSmart
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment