├── .gitignore ├── .graphqlconfig.yml ├── README.md ├── amplify ├── .config │ └── project-config.json └── backend │ ├── analytics │ └── reactnotes │ │ ├── parameters.json │ │ └── pinpoint-cloudformation-template.json │ ├── api │ └── reactnotes │ │ ├── build │ │ ├── resolvers │ │ │ ├── Mutation.createNote.request │ │ │ ├── Mutation.createNote.response │ │ │ ├── Mutation.deleteNote.request │ │ │ ├── Mutation.deleteNote.response │ │ │ ├── Mutation.updateNote.request │ │ │ ├── Mutation.updateNote.response │ │ │ ├── Query.getNote.request │ │ │ ├── Query.getNote.response │ │ │ ├── Query.listNotes.request │ │ │ └── Query.listNotes.response │ │ └── schema.graphql │ │ ├── cloudformation-template.json │ │ ├── parameters.json │ │ └── schema.graphql │ ├── auth │ └── reactnotescognitoauth │ │ ├── parameters.json │ │ └── reactnotescognitoauth-cloudformation-template.yml │ ├── awscloudformation │ └── nested-cloudformation-stack.yml │ └── backend-config.json ├── auth.jpg ├── hero.jpg ├── notesapp.jpg ├── package.json ├── preview.png ├── public ├── favicon.ico ├── index.html └── manifest.json ├── src ├── App.css ├── App.js ├── App.test.js ├── components │ ├── Form.js │ ├── Note.js │ └── Notes.js ├── graphql │ ├── mutations.js │ ├── queries.js │ ├── schema.json │ └── subscriptions.js ├── index.css ├── index.js ├── logo.svg └── serviceWorker.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/react-notes/HEAD/.gitignore -------------------------------------------------------------------------------- /.graphqlconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/react-notes/HEAD/.graphqlconfig.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/react-notes/HEAD/README.md -------------------------------------------------------------------------------- /amplify/.config/project-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/react-notes/HEAD/amplify/.config/project-config.json -------------------------------------------------------------------------------- /amplify/backend/analytics/reactnotes/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/react-notes/HEAD/amplify/backend/analytics/reactnotes/parameters.json -------------------------------------------------------------------------------- /amplify/backend/analytics/reactnotes/pinpoint-cloudformation-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/react-notes/HEAD/amplify/backend/analytics/reactnotes/pinpoint-cloudformation-template.json -------------------------------------------------------------------------------- /amplify/backend/api/reactnotes/build/resolvers/Mutation.createNote.request: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/react-notes/HEAD/amplify/backend/api/reactnotes/build/resolvers/Mutation.createNote.request -------------------------------------------------------------------------------- /amplify/backend/api/reactnotes/build/resolvers/Mutation.createNote.response: -------------------------------------------------------------------------------- 1 | $util.toJson($context.result) -------------------------------------------------------------------------------- /amplify/backend/api/reactnotes/build/resolvers/Mutation.deleteNote.request: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/react-notes/HEAD/amplify/backend/api/reactnotes/build/resolvers/Mutation.deleteNote.request -------------------------------------------------------------------------------- /amplify/backend/api/reactnotes/build/resolvers/Mutation.deleteNote.response: -------------------------------------------------------------------------------- 1 | $util.toJson($context.result) -------------------------------------------------------------------------------- /amplify/backend/api/reactnotes/build/resolvers/Mutation.updateNote.request: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/react-notes/HEAD/amplify/backend/api/reactnotes/build/resolvers/Mutation.updateNote.request -------------------------------------------------------------------------------- /amplify/backend/api/reactnotes/build/resolvers/Mutation.updateNote.response: -------------------------------------------------------------------------------- 1 | $util.toJson($context.result) -------------------------------------------------------------------------------- /amplify/backend/api/reactnotes/build/resolvers/Query.getNote.request: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/react-notes/HEAD/amplify/backend/api/reactnotes/build/resolvers/Query.getNote.request -------------------------------------------------------------------------------- /amplify/backend/api/reactnotes/build/resolvers/Query.getNote.response: -------------------------------------------------------------------------------- 1 | $util.toJson($context.result) -------------------------------------------------------------------------------- /amplify/backend/api/reactnotes/build/resolvers/Query.listNotes.request: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/react-notes/HEAD/amplify/backend/api/reactnotes/build/resolvers/Query.listNotes.request -------------------------------------------------------------------------------- /amplify/backend/api/reactnotes/build/resolvers/Query.listNotes.response: -------------------------------------------------------------------------------- 1 | $util.toJson($ctx.result) -------------------------------------------------------------------------------- /amplify/backend/api/reactnotes/build/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/react-notes/HEAD/amplify/backend/api/reactnotes/build/schema.graphql -------------------------------------------------------------------------------- /amplify/backend/api/reactnotes/cloudformation-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/react-notes/HEAD/amplify/backend/api/reactnotes/cloudformation-template.json -------------------------------------------------------------------------------- /amplify/backend/api/reactnotes/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/react-notes/HEAD/amplify/backend/api/reactnotes/parameters.json -------------------------------------------------------------------------------- /amplify/backend/api/reactnotes/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/react-notes/HEAD/amplify/backend/api/reactnotes/schema.graphql -------------------------------------------------------------------------------- /amplify/backend/auth/reactnotescognitoauth/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/react-notes/HEAD/amplify/backend/auth/reactnotescognitoauth/parameters.json -------------------------------------------------------------------------------- /amplify/backend/auth/reactnotescognitoauth/reactnotescognitoauth-cloudformation-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/react-notes/HEAD/amplify/backend/auth/reactnotescognitoauth/reactnotescognitoauth-cloudformation-template.yml -------------------------------------------------------------------------------- /amplify/backend/awscloudformation/nested-cloudformation-stack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/react-notes/HEAD/amplify/backend/awscloudformation/nested-cloudformation-stack.yml -------------------------------------------------------------------------------- /amplify/backend/backend-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/react-notes/HEAD/amplify/backend/backend-config.json -------------------------------------------------------------------------------- /auth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/react-notes/HEAD/auth.jpg -------------------------------------------------------------------------------- /hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/react-notes/HEAD/hero.jpg -------------------------------------------------------------------------------- /notesapp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/react-notes/HEAD/notesapp.jpg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/react-notes/HEAD/package.json -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/react-notes/HEAD/preview.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/react-notes/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/react-notes/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/react-notes/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/react-notes/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/react-notes/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/react-notes/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/components/Form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/react-notes/HEAD/src/components/Form.js -------------------------------------------------------------------------------- /src/components/Note.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/react-notes/HEAD/src/components/Note.js -------------------------------------------------------------------------------- /src/components/Notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/react-notes/HEAD/src/components/Notes.js -------------------------------------------------------------------------------- /src/graphql/mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/react-notes/HEAD/src/graphql/mutations.js -------------------------------------------------------------------------------- /src/graphql/queries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/react-notes/HEAD/src/graphql/queries.js -------------------------------------------------------------------------------- /src/graphql/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/react-notes/HEAD/src/graphql/schema.json -------------------------------------------------------------------------------- /src/graphql/subscriptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/react-notes/HEAD/src/graphql/subscriptions.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/react-notes/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/react-notes/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/react-notes/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/react-notes/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabit3/react-notes/HEAD/yarn.lock --------------------------------------------------------------------------------