Skip to content

Instantly share code, notes, and snippets.

View nmorozov's full-sized avatar

Nikita Morozov nmorozov

View GitHub Profile
import { useEffect, useState } from 'react'
type TUseMatchMedia = {
isDesktopSize: boolean
isTabletSize: boolean
isMobileSize: boolean
}
const useMatchMedia = (): TUseMatchMedia => {
const mobileQuery = window.matchMedia('(min-width: 320px) and (max-width: 767px)')