Skip to content

Instantly share code, notes, and snippets.

@takanorip
Created December 10, 2018 00:52
Show Gist options
  • Save takanorip/533dad8e6ccf44e3c21aed86214a6283 to your computer and use it in GitHub Desktop.
Save takanorip/533dad8e6ccf44e3c21aed86214a6283 to your computer and use it in GitHub Desktop.
const withClientOnlyUser = () => (
<Query query={GET_USER_WITH_ID} ssr={false}>
{({ data }) => <span>I won't be run on the server</span>}
</Query>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment