├── .gitignore ├── LICENSE ├── README.md ├── gulpfile.js ├── package.json └── src ├── index.html ├── js ├── actions │ ├── GithubActions.js │ └── NoteActions.js ├── components │ ├── App.js │ ├── Github │ │ ├── Left.js │ │ └── Middle.js │ ├── Header.js │ ├── Home.js │ ├── Notes │ │ ├── AddNote.js │ │ ├── Notes.js │ │ └── NotesList.js │ ├── Profile.js │ └── SearchGithub.js ├── config │ └── routes.js ├── constants │ └── AppConstants.js ├── dispatcher │ └── AppDispatcher.js ├── main.js ├── stores │ ├── GithubStore.js │ └── NotesStore.js └── utils │ ├── FirebaseUtils.js │ └── GithubUtils.js └── styles.css /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_STORE 2 | node_modules 3 | dist 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermcginnis/react-github-notetaker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermcginnis/react-github-notetaker/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermcginnis/react-github-notetaker/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermcginnis/react-github-notetaker/HEAD/package.json -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermcginnis/react-github-notetaker/HEAD/src/index.html -------------------------------------------------------------------------------- /src/js/actions/GithubActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermcginnis/react-github-notetaker/HEAD/src/js/actions/GithubActions.js -------------------------------------------------------------------------------- /src/js/actions/NoteActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermcginnis/react-github-notetaker/HEAD/src/js/actions/NoteActions.js -------------------------------------------------------------------------------- /src/js/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermcginnis/react-github-notetaker/HEAD/src/js/components/App.js -------------------------------------------------------------------------------- /src/js/components/Github/Left.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermcginnis/react-github-notetaker/HEAD/src/js/components/Github/Left.js -------------------------------------------------------------------------------- /src/js/components/Github/Middle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermcginnis/react-github-notetaker/HEAD/src/js/components/Github/Middle.js -------------------------------------------------------------------------------- /src/js/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermcginnis/react-github-notetaker/HEAD/src/js/components/Header.js -------------------------------------------------------------------------------- /src/js/components/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermcginnis/react-github-notetaker/HEAD/src/js/components/Home.js -------------------------------------------------------------------------------- /src/js/components/Notes/AddNote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermcginnis/react-github-notetaker/HEAD/src/js/components/Notes/AddNote.js -------------------------------------------------------------------------------- /src/js/components/Notes/Notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermcginnis/react-github-notetaker/HEAD/src/js/components/Notes/Notes.js -------------------------------------------------------------------------------- /src/js/components/Notes/NotesList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermcginnis/react-github-notetaker/HEAD/src/js/components/Notes/NotesList.js -------------------------------------------------------------------------------- /src/js/components/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermcginnis/react-github-notetaker/HEAD/src/js/components/Profile.js -------------------------------------------------------------------------------- /src/js/components/SearchGithub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermcginnis/react-github-notetaker/HEAD/src/js/components/SearchGithub.js -------------------------------------------------------------------------------- /src/js/config/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermcginnis/react-github-notetaker/HEAD/src/js/config/routes.js -------------------------------------------------------------------------------- /src/js/constants/AppConstants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermcginnis/react-github-notetaker/HEAD/src/js/constants/AppConstants.js -------------------------------------------------------------------------------- /src/js/dispatcher/AppDispatcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermcginnis/react-github-notetaker/HEAD/src/js/dispatcher/AppDispatcher.js -------------------------------------------------------------------------------- /src/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermcginnis/react-github-notetaker/HEAD/src/js/main.js -------------------------------------------------------------------------------- /src/js/stores/GithubStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermcginnis/react-github-notetaker/HEAD/src/js/stores/GithubStore.js -------------------------------------------------------------------------------- /src/js/stores/NotesStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermcginnis/react-github-notetaker/HEAD/src/js/stores/NotesStore.js -------------------------------------------------------------------------------- /src/js/utils/FirebaseUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermcginnis/react-github-notetaker/HEAD/src/js/utils/FirebaseUtils.js -------------------------------------------------------------------------------- /src/js/utils/GithubUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermcginnis/react-github-notetaker/HEAD/src/js/utils/GithubUtils.js -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermcginnis/react-github-notetaker/HEAD/src/styles.css --------------------------------------------------------------------------------