├── .gitignore ├── README.md ├── app ├── App.js ├── components │ ├── Github │ │ ├── Repos.js │ │ └── UserProfile.js │ ├── Home.js │ ├── Main.js │ ├── Notes │ │ ├── AddNote.js │ │ ├── Notes.js │ │ └── NotesList.js │ ├── Profile.js │ └── SearchGithub.js ├── config │ └── routes.js └── utils │ └── helpers.js ├── package.json ├── public └── index.html └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermcginnis/github-notetaker-egghead/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermcginnis/github-notetaker-egghead/HEAD/README.md -------------------------------------------------------------------------------- /app/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermcginnis/github-notetaker-egghead/HEAD/app/App.js -------------------------------------------------------------------------------- /app/components/Github/Repos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermcginnis/github-notetaker-egghead/HEAD/app/components/Github/Repos.js -------------------------------------------------------------------------------- /app/components/Github/UserProfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermcginnis/github-notetaker-egghead/HEAD/app/components/Github/UserProfile.js -------------------------------------------------------------------------------- /app/components/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermcginnis/github-notetaker-egghead/HEAD/app/components/Home.js -------------------------------------------------------------------------------- /app/components/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermcginnis/github-notetaker-egghead/HEAD/app/components/Main.js -------------------------------------------------------------------------------- /app/components/Notes/AddNote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermcginnis/github-notetaker-egghead/HEAD/app/components/Notes/AddNote.js -------------------------------------------------------------------------------- /app/components/Notes/Notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermcginnis/github-notetaker-egghead/HEAD/app/components/Notes/Notes.js -------------------------------------------------------------------------------- /app/components/Notes/NotesList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermcginnis/github-notetaker-egghead/HEAD/app/components/Notes/NotesList.js -------------------------------------------------------------------------------- /app/components/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermcginnis/github-notetaker-egghead/HEAD/app/components/Profile.js -------------------------------------------------------------------------------- /app/components/SearchGithub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermcginnis/github-notetaker-egghead/HEAD/app/components/SearchGithub.js -------------------------------------------------------------------------------- /app/config/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermcginnis/github-notetaker-egghead/HEAD/app/config/routes.js -------------------------------------------------------------------------------- /app/utils/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermcginnis/github-notetaker-egghead/HEAD/app/utils/helpers.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermcginnis/github-notetaker-egghead/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermcginnis/github-notetaker-egghead/HEAD/public/index.html -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermcginnis/github-notetaker-egghead/HEAD/webpack.config.js --------------------------------------------------------------------------------