Skip to content

Instantly share code, notes, and snippets.

@graphan
Last active February 19, 2017 18:01
Show Gist options
  • Save graphan/0522ac7083f1a98586c3ab437135200b to your computer and use it in GitHub Desktop.
Save graphan/0522ac7083f1a98586c3ab437135200b to your computer and use it in GitHub Desktop.
Creating Apollo and Redux Containers with Recompose
import { compose, withHandlers } from 'recompose';
// Component Code here
export default compose(
connect(mapStateToProps),
graphql(PAGE_QUERY, getOptions(['posts'])),
withLoadingComponent,
withHandlers(handlers)
)(Page);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment