Created
April 23, 2018 11:46
-
-
Save gladchinda/d51d7cdbc17248f539ee2bd9096c9b5f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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