NEW

Summary

Directory Structure

Directory structure:
└── rakannimer-amplify-react-workshop/
    ├── README.md
    ├── package.json
    ├── .graphqlconfig.yml
    ├── amplify/
    │   ├── team-provider-info.json
    │   ├── backend/
    │   │   ├── backend-config.json
    │   │   ├── api/
    │   │   │   └── photoalbums/
    │   │   │       ├── parameters.json
    │   │   │       ├── schema.graphql
    │   │   │       ├── transform.conf.json
    │   │   │       └── stacks/
    │   │   │           └── CustomResources.json
    │   │   ├── auth/
    │   │   │   └── photoalbums9240b8c0/
    │   │   │       ├── parameters.json
    │   │   │       └── photoalbums9240b8c0-cloudformation-template.yml
    │   │   ├── function/
    │   │   │   └── S3Triggerb01fd26e/
    │   │   │       ├── S3Triggerb01fd26e-cloudformation-template.json
    │   │   │       └── src/
    │   │   │           ├── event.json
    │   │   │           ├── index.js
    │   │   │           └── package.json
    │   │   ├── hosting/
    │   │   │   └── S3AndCloudFront/
    │   │   │       ├── parameters.json
    │   │   │       └── template.json
    │   │   └── storage/
    │   │       └── photoalbumsstorage/
    │   │           ├── parameters.json
    │   │           ├── s3-cloudformation-template.json
    │   │           └── storage-params.json
    │   └── .config/
    │       └── project-config.json
    ├── public/
    │   ├── index.html
    │   ├── manifest.json
    │   └── robots.txt
    └── src/
        ├── App.css
        ├── App.js
        ├── App.test.js
        ├── index.css
        ├── index.js
        ├── serviceWorker.js
        ├── setupTests.js
        └── graphql/
            ├── mutations.js
            ├── queries.js
            └── subscriptions.js

Files Content