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