A bookshelf app that allows you to select and categorize books you have read, are currently reading, or want to read. The project emphasizes using React to build the application and provides an API server and client library that is used to persist information as you interact with the application.
The starter repo contained all the CSS and HTML markup that may be used but omits the React code that is required to complete the project. This saves some time as I didn't had to write all the CSS and HTML from scratch.
Install yarn:
- macOS :
brew install yarn- Linux :
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt-get update && sudo apt-get install yarn- Windows : Installation page
cd MyReads
yarn install
yarn startThe focus of this project is on writing functional React code, not on making the page beautiful. The goal for this project is correct functionality.
This project was bootstrapped with Create React App