Skip to content

Instantly share code, notes, and snippets.

@graphan
Created February 19, 2017 18:52
Show Gist options
  • Save graphan/503d8233c3ace6666bcb8af396521503 to your computer and use it in GitHub Desktop.
Save graphan/503d8233c3ace6666bcb8af396521503 to your computer and use it in GitHub Desktop.
Loading in Apollo
export const Component = ({ data: { loading, ... } }) => {
if (loading) {
...
return(<LoadingComponent>);
}
...
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment