We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the Performing mutations chapter, for the UUID import of src/App.js: import uuid from 'uuid/v4'
import uuid from 'uuid/v4'
I got an error when compiling (npm start):
Failed to compile. ./src/App.js Module not found: Can't resolve 'uuid/v4' in '/Users/x/my-amplify-app/src'
I replaced the import with this syntax, and it's working: import {v4 as uuid} from "uuid";
import {v4 as uuid} from "uuid";
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the Performing mutations chapter, for the UUID import of src/App.js:
import uuid from 'uuid/v4'
I got an error when compiling (npm start):
I replaced the import with this syntax, and it's working:
import {v4 as uuid} from "uuid";
The text was updated successfully, but these errors were encountered: