export function isBelow(width) {
  if (window.matchMedia) {
    return window.matchMedia(`(max-width: ${width}px)`).matches;
  }
  return window.innerWidth <= width;