Created
August 5, 2020 11:59
-
-
Save engmagdy87/8b9544d39c92478f00e70da5dd3a4d1b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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