React HOC for watching media queries.
yarn add react-with-media
npm install --save react-with-media
const ShowMessage = withMedia('(max-width: 500px)')(({matches}) =>
matches
? <span>Is mobile</span>
: <span>Is desktop</span>
)
Documentation can be found here.
react-with-media is dual-licensed under Apache 2.0 and MIT terms.