react-match-mq
v0.0.2
Published
Simple media query matching component
Downloads
3
Readme
Simple media query matching component
Uses React Hooks
IE10+ because of window.matchMedia(...)
Usage:
npm i --save react-match-mq
OR
yarn add react-match-mq
Simple true
/false
rendering.
import { Media } from 'react-match-mq';
...
<Media query={"(min-width: 1024px)"}>
{matches =>
matches ? (
"It matches!"
) : (
"Doesnt match"
)
}
</Media>