├── .gitignore ├── PROJECT_INSTRUCTIONS.md ├── README.md ├── SEARCH_TERMS.md ├── license.txt ├── package.json ├── public ├── favicon.ico └── index.html └── src ├── components ├── App.js ├── Book.js ├── BookList.js ├── BookShelf.js ├── BooksAPI.js ├── NotFound.js ├── Search.js └── ShelfChanger.js ├── css ├── App.css └── index.css ├── data └── BooksAPI.js ├── icons ├── add.svg ├── arrow-back.svg └── arrow-drop-down.svg ├── images ├── no-cover-image.png └── stacked-books.jpg ├── index.js └── screenshots ├── change-shelf.png ├── load-app.png └── search-books.png /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | yarn.lock 3 | .DS_Store 4 | 5 | /misc 6 | 7 | /build 8 | -------------------------------------------------------------------------------- /PROJECT_INSTRUCTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarah-maris/reactnd-project-myreads/HEAD/PROJECT_INSTRUCTIONS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarah-maris/reactnd-project-myreads/HEAD/README.md -------------------------------------------------------------------------------- /SEARCH_TERMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarah-maris/reactnd-project-myreads/HEAD/SEARCH_TERMS.md -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarah-maris/reactnd-project-myreads/HEAD/license.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarah-maris/reactnd-project-myreads/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarah-maris/reactnd-project-myreads/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarah-maris/reactnd-project-myreads/HEAD/public/index.html -------------------------------------------------------------------------------- /src/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarah-maris/reactnd-project-myreads/HEAD/src/components/App.js -------------------------------------------------------------------------------- /src/components/Book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarah-maris/reactnd-project-myreads/HEAD/src/components/Book.js -------------------------------------------------------------------------------- /src/components/BookList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarah-maris/reactnd-project-myreads/HEAD/src/components/BookList.js -------------------------------------------------------------------------------- /src/components/BookShelf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarah-maris/reactnd-project-myreads/HEAD/src/components/BookShelf.js -------------------------------------------------------------------------------- /src/components/BooksAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarah-maris/reactnd-project-myreads/HEAD/src/components/BooksAPI.js -------------------------------------------------------------------------------- /src/components/NotFound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarah-maris/reactnd-project-myreads/HEAD/src/components/NotFound.js -------------------------------------------------------------------------------- /src/components/Search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarah-maris/reactnd-project-myreads/HEAD/src/components/Search.js -------------------------------------------------------------------------------- /src/components/ShelfChanger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarah-maris/reactnd-project-myreads/HEAD/src/components/ShelfChanger.js -------------------------------------------------------------------------------- /src/css/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarah-maris/reactnd-project-myreads/HEAD/src/css/App.css -------------------------------------------------------------------------------- /src/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarah-maris/reactnd-project-myreads/HEAD/src/css/index.css -------------------------------------------------------------------------------- /src/data/BooksAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarah-maris/reactnd-project-myreads/HEAD/src/data/BooksAPI.js -------------------------------------------------------------------------------- /src/icons/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarah-maris/reactnd-project-myreads/HEAD/src/icons/add.svg -------------------------------------------------------------------------------- /src/icons/arrow-back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarah-maris/reactnd-project-myreads/HEAD/src/icons/arrow-back.svg -------------------------------------------------------------------------------- /src/icons/arrow-drop-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarah-maris/reactnd-project-myreads/HEAD/src/icons/arrow-drop-down.svg -------------------------------------------------------------------------------- /src/images/no-cover-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarah-maris/reactnd-project-myreads/HEAD/src/images/no-cover-image.png -------------------------------------------------------------------------------- /src/images/stacked-books.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarah-maris/reactnd-project-myreads/HEAD/src/images/stacked-books.jpg -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarah-maris/reactnd-project-myreads/HEAD/src/index.js -------------------------------------------------------------------------------- /src/screenshots/change-shelf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarah-maris/reactnd-project-myreads/HEAD/src/screenshots/change-shelf.png -------------------------------------------------------------------------------- /src/screenshots/load-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarah-maris/reactnd-project-myreads/HEAD/src/screenshots/load-app.png -------------------------------------------------------------------------------- /src/screenshots/search-books.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarah-maris/reactnd-project-myreads/HEAD/src/screenshots/search-books.png --------------------------------------------------------------------------------