hamdi
04/27/2018, 9:26 AMmax
04/27/2018, 9:27 AMexport default graphql(ClaimQuery)(withStyles(styles)(RecipeReviewCard));
taikn
04/27/2018, 9:31 AMcompose
from react-apollo
import { graphql, compose } from 'react-apollo'
export default compose(
withStyles(styles),
graphql(ClaimQuery),
)(RecipeReviewCard)
max
04/27/2018, 9:41 AMcompose
outside of graphql queries/mutationstaikn
04/27/2018, 9:48 AMweakky
04/27/2018, 9:49 AMcompose
is actually nothing more than lodash’s flowRight
function 🙂hamdi
04/27/2018, 9:56 AM