HOC to make react-responsive work with SSR
npm install react-responsive-hoc

Wrapper around react-responsive to work with SSR.
This module exports a provider for defining the default device (for SSR) and a modified MediaQuery from react-responsive to use the default device.
```
$ yarn add react-responsive-hoc
`js
import { MediaQueryProvider, MediaQuery } from 'react-responsive-hoc';
const Example = () => {
return (
On Desktop only
)
};
const App = () => {
return (
);
}
``