Advertisement
Guest User

Untitled

a guest
Oct 18th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. const getDeviceConfig = (width) => {
  2. if(width < 320) {
  3. return 'xs'
  4. } else if(width >= 320 && width < 720 ) {
  5. return 'sm'
  6. } else if(width >= 720 && width < 1024) {
  7. return 'md'
  8. } else if(width >= 1024) {
  9. return 'lg'
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement