Skip to content

Instantly share code, notes, and snippets.

@jkimbo
Created June 22, 2015 16:45
Show Gist options
  • Save jkimbo/a545c754624faec49333 to your computer and use it in GitHub Desktop.
Save jkimbo/a545c754624faec49333 to your computer and use it in GitHub Desktop.
<Responsive>
    {(width, orientation) => {
        if (width > 851) {
            if (orientation === 'portait') {
                return (
                    <div>Big and vertical</div>
                );
            }
            return (
                <div>Big and horizontal</div>
            );
        }
        return (
            <div>Small</div>
        );
    }}
</Responsive>
<Responsive>
    {(width, orientation) => <Component width={width} orientation={orientation} />}
</Responsive>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment