Skip to content

Instantly share code, notes, and snippets.

@gladchinda
Created April 23, 2018 11:46
Show Gist options
  • Save gladchinda/d51d7cdbc17248f539ee2bd9096c9b5f to your computer and use it in GitHub Desktop.
Save gladchinda/d51d7cdbc17248f539ee2bd9096c9b5f to your computer and use it in GitHub Desktop.
import React, { Component } from 'react';
import MediaQuery from 'react-responsive';
class Navigation extends Component {
render() {
return (
<MediaQuery minWidth={992}>
{matches => {
return matches
? <nav className="app-nav" role="navigation">…</nav>
: <nav className="mobile app-nav" role="navigation">…</nav>
}}
</MediaQuery>
);
}
}
export default Navigation;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment