Skip to content

Instantly share code, notes, and snippets.

@ryanflorence
Last active June 2, 2016 21:20
Show Gist options
  • Save ryanflorence/1593d76f5c01371ec3aa to your computer and use it in GitHub Desktop.
Save ryanflorence/1593d76f5c01371ec3aa to your computer and use it in GitHub Desktop.
<MatchMedia queries={{ mobile, tablet }}>
{media => (
media.mobile ? (
<div>mobile</div>
) : media.tablet ? (
<div>tablet</div>
) : (
<div>desktop</div>
)
)}
</MatchMedia>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment