react-appsync-graphql-recipe-app
react-appsync-graphql-recipe-app copied to clipboard
compose is not defined
I get an error about a missing compose function from Recipes.js. Looks like just removing that function gets things to build and run and more closely matches the article.
You can get compose
from apollo
import { compose } from 'react-apollo';
Or if you prefer/are using lodash:
$ yarn add lodash
import compose from 'lodash/fp/compose';
Thank's @jsteenkamp that help me