Skip to content

Latest commit

 

History

History
38 lines (35 loc) · 1.62 KB

GETTING.md

File metadata and controls

38 lines (35 loc) · 1.62 KB

What You're Getting

├── CONTRIBUTING.md
├── README.md - This file.
├── SEARCH_TERMS.md # The whitelisted short collection of available search terms for you to use with your app.
├── package.json # npm package manager file. It's unlikely that you'll need to modify this.
├── tests
├── public
│   ├── favicon.ico # React Icon, You may change if you wish.
│   └── index.html # DO NOT MODIFY
└── src
    ├── components
    │   └── utils
    │   │   ├── Constants.js
    │   │   └── Loading.js
    │   ├── Book.js
    │   ├── BookShelves.js
    │   ├── Categories.js
    │   ├── ChangeCategory.js
    │   └── Search.js
    ├── features
    │    ├── pt-br
    │    └── en-us
    ├── services
    │    └── BooksAPI.js # A JavaScript API for the provided Udacity backend. Instructions for the methods are below.
    ├── App.css # Styles for your app. Feel free to customize this as you desire.
    ├── App.js # This is the root of your app. Contains static HTML right now.
    ├── App.test.js # Used for testing. Provided with Create React App. Testing is encouraged, but not required.
    ├── icons # Helpful images for your app. Use at your discretion.
    │   ├── add.svg
    │   ├── arrow-back.svg
    │   └── arrow-drop-down.svg
    ├── index.css # Global styles. You probably won't need to change anything here.
    └── index.js # You should not need to modify this file. It is used for DOM rendering only.