A small stateful hook for using the window.matchMedia
API within a React
component.
yarn add @ds-pack/use-media
import useMedia from '@ds-pack/use-media'
let mediaQuery = '(min-width: 100px)'
function Component() {
let matches = useMedia(mediaQuery)
return matches ? <div /> : null
}
- Typescript
- Babel
- Jest