├── .gitignore
├── Readme.md
├── day-01
├── JSIntro
│ ├── Readme.md
│ ├── fetch_console_script.js
│ ├── index.html
│ ├── index.js
│ ├── numbers.js
│ ├── package-lock.json
│ ├── package.json
│ └── style.css
└── JsonServerDb
│ └── db.json
├── day-02
├── EmployeeApp.drawio
├── Readme.md
├── employee-frontend
│ ├── .gitignore
│ ├── README.md
│ ├── package-lock.json
│ ├── package.json
│ ├── public
│ │ ├── favicon.ico
│ │ ├── images
│ │ │ ├── 1.jpg
│ │ │ ├── 10.jpg
│ │ │ ├── 11.jpg
│ │ │ ├── 12.jpg
│ │ │ ├── 13.jpg
│ │ │ ├── 14.jpg
│ │ │ ├── 15.jpg
│ │ │ ├── 16.jpg
│ │ │ ├── 17.jpg
│ │ │ ├── 18.jpg
│ │ │ ├── 19.jpg
│ │ │ ├── 2.jpg
│ │ │ ├── 20.jpg
│ │ │ ├── 21.jpg
│ │ │ ├── 3.jpg
│ │ │ ├── 4.jpg
│ │ │ ├── 5.jpg
│ │ │ ├── 6.jpg
│ │ │ ├── 7.jpg
│ │ │ ├── 8.jpg
│ │ │ └── 9.jpg
│ │ ├── index.html
│ │ ├── logo192.png
│ │ ├── logo512.png
│ │ ├── manifest.json
│ │ └── robots.txt
│ └── src
│ │ ├── App.css
│ │ ├── App.js
│ │ ├── App.test.js
│ │ ├── Employee.js
│ │ ├── List.js
│ │ ├── data.js
│ │ ├── index.css
│ │ ├── index.js
│ │ ├── logo.svg
│ │ ├── reportWebVitals.js
│ │ ├── setupTests.js
│ │ └── style.css
└── employee
│ ├── .gitignore
│ ├── .mvn
│ └── wrapper
│ │ ├── maven-wrapper.jar
│ │ └── maven-wrapper.properties
│ ├── bin
│ ├── .gitignore
│ ├── .mvn
│ │ └── wrapper
│ │ │ ├── maven-wrapper.jar
│ │ │ └── maven-wrapper.properties
│ ├── mvnw
│ ├── mvnw.cmd
│ ├── pom.xml
│ └── src
│ │ ├── main
│ │ ├── java
│ │ │ └── org
│ │ │ │ └── btk
│ │ │ │ └── employee
│ │ │ │ ├── Employee.class
│ │ │ │ └── EmployeeApplication.class
│ │ └── resources
│ │ │ └── application.properties
│ │ └── test
│ │ └── java
│ │ └── org
│ │ └── btk
│ │ └── employee
│ │ └── EmployeeApplicationTests.class
│ ├── mvnw
│ ├── mvnw.cmd
│ ├── pom.xml
│ └── src
│ ├── main
│ ├── java
│ │ └── org
│ │ │ └── btk
│ │ │ └── employee
│ │ │ ├── Employee.java
│ │ │ └── EmployeeApplication.java
│ └── resources
│ │ └── application.properties
│ └── test
│ └── java
│ └── org
│ └── btk
│ └── employee
│ └── EmployeeApplicationTests.java
├── day-03
├── Readme.md
├── employee-api
│ ├── .gitignore
│ ├── .mvn
│ │ └── wrapper
│ │ │ ├── maven-wrapper.jar
│ │ │ └── maven-wrapper.properties
│ ├── mvnw
│ ├── mvnw.cmd
│ ├── pom.xml
│ └── src
│ │ ├── main
│ │ ├── java
│ │ │ └── org
│ │ │ │ └── btk
│ │ │ │ └── employeeapi
│ │ │ │ ├── EmployeeApiApplication.java
│ │ │ │ └── emp
│ │ │ │ ├── Employee.java
│ │ │ │ ├── EmployeeController.java
│ │ │ │ └── EmployeeRepository.java
│ │ └── resources
│ │ │ └── application.properties
│ │ └── test
│ │ └── java
│ │ └── org
│ │ └── btk
│ │ └── employeeapi
│ │ └── EmployeeApiApplicationTests.java
└── employeeApp.drawio
├── day-04
├── Readme.md
├── employee-api
│ ├── .gitignore
│ ├── .mvn
│ │ └── wrapper
│ │ │ ├── maven-wrapper.jar
│ │ │ └── maven-wrapper.properties
│ ├── mvnw
│ ├── mvnw.cmd
│ ├── pom.xml
│ └── src
│ │ ├── main
│ │ ├── java
│ │ │ └── org
│ │ │ │ └── btk
│ │ │ │ └── employeeapi
│ │ │ │ ├── EmployeeApiApplication.java
│ │ │ │ └── emp
│ │ │ │ ├── Employee.java
│ │ │ │ ├── EmployeeController.java
│ │ │ │ └── EmployeeRepository.java
│ │ └── resources
│ │ │ └── application.properties
│ │ └── test
│ │ └── java
│ │ └── org
│ │ └── btk
│ │ └── employeeapi
│ │ └── EmployeeApiApplicationTests.java
└── promise
│ ├── .gitignore
│ ├── apiCallsWithAxios.js
│ ├── deleteOneEmployee.js
│ ├── getAllEmployees.js
│ ├── getAllEmployeesAsync.js
│ ├── package-lock.json
│ ├── package.json
│ ├── postOneEmployee.js
│ ├── postOneEmployeebyOguz.js
│ ├── promiseSample.js
│ ├── promiseSample2.js
│ ├── putOneEmployee.js
│ └── updateOneEmployee.js
├── day-05
├── Readme.md
├── employee-api
│ ├── .gitignore
│ ├── .mvn
│ │ └── wrapper
│ │ │ ├── maven-wrapper.jar
│ │ │ └── maven-wrapper.properties
│ ├── mvnw
│ ├── mvnw.cmd
│ ├── pom.xml
│ └── src
│ │ ├── main
│ │ ├── java
│ │ │ └── org
│ │ │ │ └── btk
│ │ │ │ └── employeeapi
│ │ │ │ ├── EmployeeApiApplication.java
│ │ │ │ └── emp
│ │ │ │ ├── Employee.java
│ │ │ │ ├── EmployeeController.java
│ │ │ │ └── EmployeeRepository.java
│ │ └── resources
│ │ │ └── application.properties
│ │ └── test
│ │ └── java
│ │ └── org
│ │ └── btk
│ │ └── employeeapi
│ │ └── EmployeeApiApplicationTests.java
├── employee-mui
│ ├── .gitignore
│ ├── README.md
│ ├── package-lock.json
│ ├── package.json
│ ├── public
│ │ ├── favicon.ico
│ │ ├── images
│ │ │ ├── 1.jpg
│ │ │ ├── 10.jpg
│ │ │ ├── 11.jpg
│ │ │ ├── 12.jpg
│ │ │ ├── 13.jpg
│ │ │ ├── 14.jpg
│ │ │ ├── 15.jpg
│ │ │ ├── 16.jpg
│ │ │ ├── 17.jpg
│ │ │ ├── 18.jpg
│ │ │ ├── 19.jpg
│ │ │ ├── 2.jpg
│ │ │ ├── 20.jpg
│ │ │ ├── 21.jpg
│ │ │ ├── 3.jpg
│ │ │ ├── 4.jpg
│ │ │ ├── 5.jpg
│ │ │ ├── 6.jpg
│ │ │ ├── 7.jpg
│ │ │ ├── 8.jpg
│ │ │ └── 9.jpg
│ │ ├── index.html
│ │ ├── logo192.png
│ │ ├── logo512.png
│ │ ├── manifest.json
│ │ └── robots.txt
│ └── src
│ │ ├── App.css
│ │ ├── App.js
│ │ ├── App.test.js
│ │ ├── components
│ │ ├── EmployeeAdd.js
│ │ ├── EmployeeList.js
│ │ ├── Search.js
│ │ └── Topmenu.js
│ │ ├── index.css
│ │ ├── index.js
│ │ ├── logo.svg
│ │ ├── reportWebVitals.js
│ │ ├── services
│ │ └── EmployeeService.js
│ │ └── setupTests.js
└── employeeApp.drawio
├── day-06
├── Readme.md
├── api
│ ├── .gitignore
│ ├── .mvn
│ │ └── wrapper
│ │ │ ├── maven-wrapper.jar
│ │ │ └── maven-wrapper.properties
│ ├── mvnw
│ ├── mvnw.cmd
│ ├── pom.xml
│ └── src
│ │ ├── main
│ │ ├── java
│ │ │ └── com
│ │ │ │ └── bookstore
│ │ │ │ └── api
│ │ │ │ ├── ApiApplication.java
│ │ │ │ ├── controllers
│ │ │ │ ├── BookContoller.java
│ │ │ │ └── CategoryController.java
│ │ │ │ ├── entities
│ │ │ │ ├── Book.java
│ │ │ │ ├── Category.java
│ │ │ │ └── models
│ │ │ │ │ ├── ApiResponse.java
│ │ │ │ │ └── ResponseMessage.java
│ │ │ │ ├── exceptions
│ │ │ │ └── notFoundExceptions
│ │ │ │ │ ├── BookNotFoundException.java
│ │ │ │ │ ├── CategoryNotFoundException.java
│ │ │ │ │ └── NotFoundException.java
│ │ │ │ └── repositories
│ │ │ │ ├── BookRepository.java
│ │ │ │ └── CategoryRepository.java
│ │ └── resources
│ │ │ ├── application.properties
│ │ │ └── logback-spring.xml
│ │ └── test
│ │ └── java
│ │ └── com
│ │ └── bookstore
│ │ └── api
│ │ └── ApiApplicationTests.java
└── builderDesignPattern
│ ├── .vscode
│ └── settings.json
│ ├── README.md
│ ├── bin
│ ├── App.class
│ └── User.class
│ └── src
│ ├── App.java
│ └── User.java
├── day-07
├── Readme.md
└── api
│ ├── .gitignore
│ ├── .mvn
│ └── wrapper
│ │ ├── maven-wrapper.jar
│ │ └── maven-wrapper.properties
│ ├── mvnw
│ ├── mvnw.cmd
│ ├── pom.xml
│ └── src
│ ├── main
│ ├── java
│ │ └── com
│ │ │ └── bookstore
│ │ │ └── api
│ │ │ ├── ApiApplication.java
│ │ │ ├── controllers
│ │ │ ├── BookContoller.java
│ │ │ └── CategoryController.java
│ │ │ ├── entities
│ │ │ ├── Book.java
│ │ │ ├── Category.java
│ │ │ └── models
│ │ │ │ ├── ApiErrorResponse.java
│ │ │ │ ├── ApiResponse.java
│ │ │ │ └── ResponseMessage.java
│ │ │ ├── exceptions
│ │ │ ├── RestResponseEntityExceptionHandler.java
│ │ │ └── notFoundExceptions
│ │ │ │ ├── BookNotFoundException.java
│ │ │ │ ├── CategoryNotFoundException.java
│ │ │ │ └── NotFoundException.java
│ │ │ ├── repositories
│ │ │ ├── BookRepository.java
│ │ │ └── CategoryRepository.java
│ │ │ └── services
│ │ │ ├── Abstract
│ │ │ ├── BookService.java
│ │ │ └── CategoryService.java
│ │ │ ├── BookServiceImp.java
│ │ │ └── CategoryServiceImp.java
│ └── resources
│ │ ├── application.properties
│ │ └── logback-spring.xml
│ └── test
│ └── java
│ └── com
│ └── bookstore
│ └── api
│ └── ApiApplicationTests.java
├── day-08
├── Readme.md
├── api
│ ├── .gitignore
│ ├── .mvn
│ │ └── wrapper
│ │ │ ├── maven-wrapper.jar
│ │ │ └── maven-wrapper.properties
│ ├── mvnw
│ ├── mvnw.cmd
│ ├── pom.xml
│ └── src
│ │ ├── main
│ │ ├── java
│ │ │ └── com
│ │ │ │ └── bookstore
│ │ │ │ └── api
│ │ │ │ ├── ApiApplication.java
│ │ │ │ ├── controllers
│ │ │ │ ├── AuthorController.java
│ │ │ │ ├── BookContoller.java
│ │ │ │ └── CategoryController.java
│ │ │ │ ├── entities
│ │ │ │ ├── Author.java
│ │ │ │ ├── Book.java
│ │ │ │ ├── Category.java
│ │ │ │ ├── models
│ │ │ │ │ ├── ApiErrorResponse.java
│ │ │ │ │ ├── ApiResponse.java
│ │ │ │ │ └── ResponseMessage.java
│ │ │ │ └── requests
│ │ │ │ │ ├── BookRequestForPost.java
│ │ │ │ │ └── BookRequestForPut.java
│ │ │ │ ├── exceptions
│ │ │ │ ├── RestResponseEntityExceptionHandler.java
│ │ │ │ └── notFoundExceptions
│ │ │ │ │ ├── AuthorNotFoundException.java
│ │ │ │ │ ├── BookNotFoundException.java
│ │ │ │ │ ├── CategoryNotFoundException.java
│ │ │ │ │ └── NotFoundException.java
│ │ │ │ ├── repositories
│ │ │ │ ├── AuthorRepository.java
│ │ │ │ ├── BookRepository.java
│ │ │ │ └── CategoryRepository.java
│ │ │ │ └── services
│ │ │ │ ├── Abstract
│ │ │ │ ├── AuthorService.java
│ │ │ │ ├── BookService.java
│ │ │ │ └── CategoryService.java
│ │ │ │ ├── AuthorServiceImp.java
│ │ │ │ ├── BookServiceImp.java
│ │ │ │ └── CategoryServiceImp.java
│ │ └── resources
│ │ │ ├── application.properties
│ │ │ └── logback-spring.xml
│ │ └── test
│ │ └── java
│ │ └── com
│ │ └── bookstore
│ │ └── api
│ │ └── ApiApplicationTests.java
└── diagrams.drawio
├── day-09
├── Readme.md
├── api
│ ├── .gitignore
│ ├── .mvn
│ │ └── wrapper
│ │ │ ├── maven-wrapper.jar
│ │ │ └── maven-wrapper.properties
│ ├── mvnw
│ ├── mvnw.cmd
│ ├── pom.xml
│ └── src
│ │ ├── main
│ │ ├── java
│ │ │ └── com
│ │ │ │ └── bookstore
│ │ │ │ └── api
│ │ │ │ ├── ApiApplication.java
│ │ │ │ ├── config
│ │ │ │ └── ModelMapperConfig.java
│ │ │ │ ├── controllers
│ │ │ │ ├── AuthorController.java
│ │ │ │ ├── BookContoller.java
│ │ │ │ └── CategoryController.java
│ │ │ │ ├── entities
│ │ │ │ ├── Author.java
│ │ │ │ ├── Book.java
│ │ │ │ ├── Category.java
│ │ │ │ ├── dto
│ │ │ │ │ ├── BookDtoForPost.java
│ │ │ │ │ └── BookDtoForPut.java
│ │ │ │ └── models
│ │ │ │ │ ├── ApiErrorResponse.java
│ │ │ │ │ ├── ApiResponse.java
│ │ │ │ │ └── ResponseMessage.java
│ │ │ │ ├── exceptions
│ │ │ │ ├── RestResponseEntityExceptionHandler.java
│ │ │ │ └── notFoundExceptions
│ │ │ │ │ ├── AuthorNotFoundException.java
│ │ │ │ │ ├── BookNotFoundException.java
│ │ │ │ │ ├── CategoryNotFoundException.java
│ │ │ │ │ └── NotFoundException.java
│ │ │ │ ├── repositories
│ │ │ │ ├── AuthorRepository.java
│ │ │ │ ├── BookRepository.java
│ │ │ │ └── CategoryRepository.java
│ │ │ │ └── services
│ │ │ │ ├── Abstract
│ │ │ │ ├── AuthorService.java
│ │ │ │ ├── BookService.java
│ │ │ │ └── CategoryService.java
│ │ │ │ ├── AuthorServiceImp.java
│ │ │ │ ├── BookServiceImp.java
│ │ │ │ └── CategoryServiceImp.java
│ │ └── resources
│ │ │ ├── application.properties
│ │ │ └── logback-spring.xml
│ │ └── test
│ │ └── java
│ │ └── com
│ │ └── bookstore
│ │ └── api
│ │ └── ApiApplicationTests.java
└── bs-store
│ ├── .gitignore
│ ├── README.md
│ ├── package-lock.json
│ ├── package.json
│ ├── public
│ ├── favicon.ico
│ ├── index.html
│ ├── logo192.png
│ ├── logo512.png
│ ├── manifest.json
│ └── robots.txt
│ └── src
│ ├── App.css
│ ├── App.js
│ ├── App.test.js
│ ├── adminpages
│ ├── authors
│ │ ├── AddAuthor.js
│ │ └── ListAuthor.js
│ ├── books
│ │ └── ListBook.js
│ └── categories
│ │ └── ListCategory.js
│ ├── components
│ ├── adminAppbar
│ │ └── AdminAppbar.js
│ └── links
│ │ └── TopLink.js
│ ├── context
│ └── AppContext.js
│ ├── data.js
│ ├── index.css
│ ├── index.js
│ ├── logo.svg
│ ├── pages
│ └── home
│ │ └── Home.js
│ ├── reportWebVitals.js
│ └── setupTests.js
├── day-10
├── Readme.md
├── api
│ ├── .gitignore
│ ├── .mvn
│ │ └── wrapper
│ │ │ ├── maven-wrapper.jar
│ │ │ └── maven-wrapper.properties
│ ├── bin
│ │ ├── .gitignore
│ │ ├── .mvn
│ │ │ └── wrapper
│ │ │ │ ├── maven-wrapper.jar
│ │ │ │ └── maven-wrapper.properties
│ │ ├── mvnw
│ │ ├── mvnw.cmd
│ │ ├── pom.xml
│ │ └── src
│ │ │ ├── main
│ │ │ ├── java
│ │ │ │ └── com
│ │ │ │ │ └── bookstore
│ │ │ │ │ └── api
│ │ │ │ │ ├── ApiApplication.class
│ │ │ │ │ ├── config
│ │ │ │ │ ├── CorsConfig.class
│ │ │ │ │ └── ModelMapperConfig.class
│ │ │ │ │ ├── controllers
│ │ │ │ │ ├── AuthorController.class
│ │ │ │ │ ├── BookContoller.class
│ │ │ │ │ └── CategoryController.class
│ │ │ │ │ ├── entities
│ │ │ │ │ ├── Author.class
│ │ │ │ │ ├── Book.class
│ │ │ │ │ ├── Category.class
│ │ │ │ │ ├── dto
│ │ │ │ │ │ ├── BookDtoForPost.class
│ │ │ │ │ │ └── BookDtoForPut.class
│ │ │ │ │ └── models
│ │ │ │ │ │ ├── ApiErrorResponse.class
│ │ │ │ │ │ ├── ApiResponse$ApiResponseBuilder.class
│ │ │ │ │ │ ├── ApiResponse$ApiResponseBuilderImpl.class
│ │ │ │ │ │ ├── ApiResponse.class
│ │ │ │ │ │ └── ResponseMessage.class
│ │ │ │ │ ├── exceptions
│ │ │ │ │ ├── RestResponseEntityExceptionHandler.class
│ │ │ │ │ └── notFoundExceptions
│ │ │ │ │ │ ├── AuthorNotFoundException.class
│ │ │ │ │ │ ├── BookNotFoundException.class
│ │ │ │ │ │ ├── CategoryNotFoundException.class
│ │ │ │ │ │ └── NotFoundException.class
│ │ │ │ │ ├── repositories
│ │ │ │ │ ├── AuthorRepository.class
│ │ │ │ │ ├── BookRepository.class
│ │ │ │ │ └── CategoryRepository.class
│ │ │ │ │ └── services
│ │ │ │ │ ├── Abstract
│ │ │ │ │ ├── AuthorService.class
│ │ │ │ │ ├── BookService.class
│ │ │ │ │ └── CategoryService.class
│ │ │ │ │ ├── AuthorServiceImp.class
│ │ │ │ │ ├── BookServiceImp.class
│ │ │ │ │ └── CategoryServiceImp.class
│ │ │ └── resources
│ │ │ │ ├── application.properties
│ │ │ │ └── logback-spring.xml
│ │ │ └── test
│ │ │ └── java
│ │ │ └── com
│ │ │ └── bookstore
│ │ │ └── api
│ │ │ └── ApiApplicationTests.class
│ ├── mvnw
│ ├── mvnw.cmd
│ ├── pom.xml
│ └── src
│ │ ├── main
│ │ ├── java
│ │ │ └── com
│ │ │ │ └── bookstore
│ │ │ │ └── api
│ │ │ │ ├── ApiApplication.java
│ │ │ │ ├── config
│ │ │ │ ├── CorsConfig.java
│ │ │ │ └── ModelMapperConfig.java
│ │ │ │ ├── controllers
│ │ │ │ ├── AuthorController.java
│ │ │ │ ├── BookContoller.java
│ │ │ │ └── CategoryController.java
│ │ │ │ ├── entities
│ │ │ │ ├── Author.java
│ │ │ │ ├── Book.java
│ │ │ │ ├── Category.java
│ │ │ │ ├── dto
│ │ │ │ │ ├── BookDtoForPost.java
│ │ │ │ │ └── BookDtoForPut.java
│ │ │ │ └── models
│ │ │ │ │ ├── ApiErrorResponse.java
│ │ │ │ │ ├── ApiResponse.java
│ │ │ │ │ └── ResponseMessage.java
│ │ │ │ ├── exceptions
│ │ │ │ ├── RestResponseEntityExceptionHandler.java
│ │ │ │ └── notFoundExceptions
│ │ │ │ │ ├── AuthorNotFoundException.java
│ │ │ │ │ ├── BookNotFoundException.java
│ │ │ │ │ ├── CategoryNotFoundException.java
│ │ │ │ │ └── NotFoundException.java
│ │ │ │ ├── repositories
│ │ │ │ ├── AuthorRepository.java
│ │ │ │ ├── BookRepository.java
│ │ │ │ └── CategoryRepository.java
│ │ │ │ └── services
│ │ │ │ ├── Abstract
│ │ │ │ ├── AuthorService.java
│ │ │ │ ├── BookService.java
│ │ │ │ └── CategoryService.java
│ │ │ │ ├── AuthorServiceImp.java
│ │ │ │ ├── BookServiceImp.java
│ │ │ │ └── CategoryServiceImp.java
│ │ └── resources
│ │ │ ├── application.properties
│ │ │ └── logback-spring.xml
│ │ └── test
│ │ └── java
│ │ └── com
│ │ └── bookstore
│ │ └── api
│ │ └── ApiApplicationTests.java
├── bs-store
│ ├── .env
│ ├── .gitignore
│ ├── README.md
│ ├── package-lock.json
│ ├── package.json
│ ├── public
│ │ ├── favicon.ico
│ │ ├── index.html
│ │ ├── logo192.png
│ │ ├── logo512.png
│ │ ├── manifest.json
│ │ └── robots.txt
│ └── src
│ │ ├── App.css
│ │ ├── App.js
│ │ ├── App.test.js
│ │ ├── adminpages
│ │ ├── authors
│ │ │ ├── AddAuthor.js
│ │ │ └── ListAuthor.js
│ │ ├── books
│ │ │ └── ListBook.js
│ │ └── categories
│ │ │ └── ListCategory.js
│ │ ├── components
│ │ ├── adminAppbar
│ │ │ └── AdminAppbar.js
│ │ └── links
│ │ │ └── TopLink.js
│ │ ├── context
│ │ └── AppContext.js
│ │ ├── data.js
│ │ ├── index.css
│ │ ├── index.js
│ │ ├── logo.svg
│ │ ├── pages
│ │ └── home
│ │ │ └── Home.js
│ │ ├── reportWebVitals.js
│ │ ├── services
│ │ └── AuthorService.js
│ │ └── setupTests.js
└── day-10.drawio
├── day-11
├── Readme.md
├── api
│ ├── .gitignore
│ ├── .mvn
│ │ └── wrapper
│ │ │ ├── maven-wrapper.jar
│ │ │ └── maven-wrapper.properties
│ ├── bin
│ │ ├── .gitignore
│ │ ├── .mvn
│ │ │ └── wrapper
│ │ │ │ ├── maven-wrapper.jar
│ │ │ │ └── maven-wrapper.properties
│ │ ├── mvnw
│ │ ├── mvnw.cmd
│ │ ├── pom.xml
│ │ └── src
│ │ │ ├── main
│ │ │ ├── java
│ │ │ │ └── com
│ │ │ │ │ └── bookstore
│ │ │ │ │ └── api
│ │ │ │ │ ├── ApiApplication.class
│ │ │ │ │ ├── config
│ │ │ │ │ ├── CorsConfig.class
│ │ │ │ │ └── ModelMapperConfig.class
│ │ │ │ │ ├── controllers
│ │ │ │ │ ├── AuthorController.class
│ │ │ │ │ ├── BookContoller.class
│ │ │ │ │ └── CategoryController.class
│ │ │ │ │ ├── entities
│ │ │ │ │ ├── Author.class
│ │ │ │ │ ├── Book.class
│ │ │ │ │ ├── Category.class
│ │ │ │ │ ├── dto
│ │ │ │ │ │ ├── BookDtoForPost.class
│ │ │ │ │ │ └── BookDtoForPut.class
│ │ │ │ │ └── models
│ │ │ │ │ │ ├── ApiErrorResponse.class
│ │ │ │ │ │ ├── ApiResponse$ApiResponseBuilder.class
│ │ │ │ │ │ ├── ApiResponse$ApiResponseBuilderImpl.class
│ │ │ │ │ │ ├── ApiResponse.class
│ │ │ │ │ │ └── ResponseMessage.class
│ │ │ │ │ ├── exceptions
│ │ │ │ │ ├── RestResponseEntityExceptionHandler.class
│ │ │ │ │ └── notFoundExceptions
│ │ │ │ │ │ ├── AuthorNotFoundException.class
│ │ │ │ │ │ ├── BookNotFoundException.class
│ │ │ │ │ │ ├── CategoryNotFoundException.class
│ │ │ │ │ │ └── NotFoundException.class
│ │ │ │ │ ├── repositories
│ │ │ │ │ ├── AuthorRepository.class
│ │ │ │ │ ├── BookRepository.class
│ │ │ │ │ └── CategoryRepository.class
│ │ │ │ │ └── services
│ │ │ │ │ ├── Abstract
│ │ │ │ │ ├── AuthorService.class
│ │ │ │ │ ├── BookService.class
│ │ │ │ │ └── CategoryService.class
│ │ │ │ │ ├── AuthorServiceImp.class
│ │ │ │ │ ├── BookServiceImp.class
│ │ │ │ │ └── CategoryServiceImp.class
│ │ │ └── resources
│ │ │ │ ├── application.properties
│ │ │ │ └── logback-spring.xml
│ │ │ └── test
│ │ │ └── java
│ │ │ └── com
│ │ │ └── bookstore
│ │ │ └── api
│ │ │ └── ApiApplicationTests.class
│ ├── mvnw
│ ├── mvnw.cmd
│ ├── pom.xml
│ └── src
│ │ ├── main
│ │ ├── java
│ │ │ └── com
│ │ │ │ └── bookstore
│ │ │ │ └── api
│ │ │ │ ├── ApiApplication.java
│ │ │ │ ├── config
│ │ │ │ ├── CorsConfig.java
│ │ │ │ └── ModelMapperConfig.java
│ │ │ │ ├── controllers
│ │ │ │ ├── AuthorController.java
│ │ │ │ ├── BookContoller.java
│ │ │ │ └── CategoryController.java
│ │ │ │ ├── entities
│ │ │ │ ├── Author.java
│ │ │ │ ├── Book.java
│ │ │ │ ├── Category.java
│ │ │ │ ├── dto
│ │ │ │ │ ├── BookDtoForPost.java
│ │ │ │ │ └── BookDtoForPut.java
│ │ │ │ └── models
│ │ │ │ │ ├── ApiErrorResponse.java
│ │ │ │ │ ├── ApiResponse.java
│ │ │ │ │ └── ResponseMessage.java
│ │ │ │ ├── exceptions
│ │ │ │ ├── RestResponseEntityExceptionHandler.java
│ │ │ │ └── notFoundExceptions
│ │ │ │ │ ├── AuthorNotFoundException.java
│ │ │ │ │ ├── BookNotFoundException.java
│ │ │ │ │ ├── CategoryNotFoundException.java
│ │ │ │ │ └── NotFoundException.java
│ │ │ │ ├── repositories
│ │ │ │ ├── AuthorRepository.java
│ │ │ │ ├── BookRepository.java
│ │ │ │ └── CategoryRepository.java
│ │ │ │ └── services
│ │ │ │ ├── Abstract
│ │ │ │ ├── AuthorService.java
│ │ │ │ ├── BookService.java
│ │ │ │ └── CategoryService.java
│ │ │ │ ├── AuthorServiceImp.java
│ │ │ │ ├── BookServiceImp.java
│ │ │ │ └── CategoryServiceImp.java
│ │ └── resources
│ │ │ ├── application.properties
│ │ │ └── logback-spring.xml
│ │ └── test
│ │ └── java
│ │ └── com
│ │ └── bookstore
│ │ └── api
│ │ └── ApiApplicationTests.java
├── bs-store
│ ├── .env
│ ├── .gitignore
│ ├── .vscode
│ │ └── settings.json
│ ├── README.md
│ ├── package-lock.json
│ ├── package.json
│ ├── public
│ │ ├── favicon.ico
│ │ ├── index.html
│ │ ├── logo192.png
│ │ ├── logo512.png
│ │ ├── manifest.json
│ │ └── robots.txt
│ └── src
│ │ ├── App.css
│ │ ├── App.js
│ │ ├── App.test.js
│ │ ├── adminpages
│ │ ├── authors
│ │ │ ├── AddAuthor.js
│ │ │ └── ListAuthor.js
│ │ ├── books
│ │ │ └── ListBook.js
│ │ └── categories
│ │ │ ├── AddCategory.js
│ │ │ ├── ListCategory.js
│ │ │ └── UpdateCategory.js
│ │ ├── components
│ │ ├── adminAppbar
│ │ │ └── AdminAppbar.js
│ │ ├── links
│ │ │ └── TopLink.js
│ │ ├── snackBar
│ │ │ └── SimpleSnackbar.js
│ │ └── theme
│ │ │ ├── CustomThemeProvider.js
│ │ │ ├── ThemeMenu.js
│ │ │ └── index.js
│ │ ├── context
│ │ └── AppContext.js
│ │ ├── data.js
│ │ ├── index.css
│ │ ├── index.js
│ │ ├── logo.svg
│ │ ├── pages
│ │ └── home
│ │ │ └── Home.js
│ │ ├── reportWebVitals.js
│ │ ├── services
│ │ ├── AuthorService.js
│ │ └── CategoryService.js
│ │ ├── setupTests.js
│ │ └── store
│ │ ├── actions
│ │ ├── categoryActions.js
│ │ └── settingActions.js
│ │ ├── configureStore.js
│ │ ├── initialValues
│ │ ├── categoryItems.js
│ │ └── settingItems.js
│ │ ├── reducers
│ │ ├── categoryReducer.js
│ │ └── settingReducer.js
│ │ └── rootReducer.js
└── day-11.drawio
├── day-12
├── Readme.md
├── api
│ ├── .gitignore
│ ├── .mvn
│ │ └── wrapper
│ │ │ ├── maven-wrapper.jar
│ │ │ └── maven-wrapper.properties
│ ├── bin
│ │ ├── .gitignore
│ │ ├── .mvn
│ │ │ └── wrapper
│ │ │ │ ├── maven-wrapper.jar
│ │ │ │ └── maven-wrapper.properties
│ │ ├── mvnw
│ │ ├── mvnw.cmd
│ │ ├── pom.xml
│ │ └── src
│ │ │ ├── main
│ │ │ ├── java
│ │ │ │ └── com
│ │ │ │ │ └── bookstore
│ │ │ │ │ └── api
│ │ │ │ │ ├── ApiApplication.class
│ │ │ │ │ ├── config
│ │ │ │ │ ├── CorsConfig.class
│ │ │ │ │ └── ModelMapperConfig.class
│ │ │ │ │ ├── controllers
│ │ │ │ │ ├── AuthorController.class
│ │ │ │ │ ├── BookContoller.class
│ │ │ │ │ └── CategoryController.class
│ │ │ │ │ ├── entities
│ │ │ │ │ ├── Author.class
│ │ │ │ │ ├── Book.class
│ │ │ │ │ ├── Category.class
│ │ │ │ │ ├── dto
│ │ │ │ │ │ ├── BookDtoForPost.class
│ │ │ │ │ │ └── BookDtoForPut.class
│ │ │ │ │ └── models
│ │ │ │ │ │ ├── ApiErrorResponse.class
│ │ │ │ │ │ ├── ApiResponse$ApiResponseBuilder.class
│ │ │ │ │ │ ├── ApiResponse$ApiResponseBuilderImpl.class
│ │ │ │ │ │ ├── ApiResponse.class
│ │ │ │ │ │ └── ResponseMessage.class
│ │ │ │ │ ├── exceptions
│ │ │ │ │ ├── RestResponseEntityExceptionHandler.class
│ │ │ │ │ └── notFoundExceptions
│ │ │ │ │ │ ├── AuthorNotFoundException.class
│ │ │ │ │ │ ├── BookNotFoundException.class
│ │ │ │ │ │ ├── CategoryNotFoundException.class
│ │ │ │ │ │ └── NotFoundException.class
│ │ │ │ │ ├── repositories
│ │ │ │ │ ├── AuthorRepository.class
│ │ │ │ │ ├── BookRepository.class
│ │ │ │ │ └── CategoryRepository.class
│ │ │ │ │ └── services
│ │ │ │ │ ├── Abstract
│ │ │ │ │ ├── AuthorService.class
│ │ │ │ │ ├── BookService.class
│ │ │ │ │ └── CategoryService.class
│ │ │ │ │ ├── AuthorServiceImp.class
│ │ │ │ │ ├── BookServiceImp.class
│ │ │ │ │ └── CategoryServiceImp.class
│ │ │ └── resources
│ │ │ │ ├── application.properties
│ │ │ │ └── logback-spring.xml
│ │ │ └── test
│ │ │ └── java
│ │ │ └── com
│ │ │ └── bookstore
│ │ │ └── api
│ │ │ └── ApiApplicationTests.class
│ ├── mvnw
│ ├── mvnw.cmd
│ ├── pom.xml
│ └── src
│ │ ├── main
│ │ ├── java
│ │ │ └── com
│ │ │ │ └── bookstore
│ │ │ │ └── api
│ │ │ │ ├── ApiApplication.java
│ │ │ │ ├── config
│ │ │ │ ├── ApplicationSecurityConfig.java
│ │ │ │ ├── CorsConfig.java
│ │ │ │ ├── ModelMapperConfig.java
│ │ │ │ └── PasswordConfig.java
│ │ │ │ ├── controllers
│ │ │ │ ├── AuthorController.java
│ │ │ │ ├── BookContoller.java
│ │ │ │ └── CategoryController.java
│ │ │ │ ├── entities
│ │ │ │ ├── Author.java
│ │ │ │ ├── Book.java
│ │ │ │ ├── Category.java
│ │ │ │ ├── dto
│ │ │ │ │ ├── BookDtoForPost.java
│ │ │ │ │ └── BookDtoForPut.java
│ │ │ │ └── models
│ │ │ │ │ ├── ApiErrorResponse.java
│ │ │ │ │ ├── ApiResponse.java
│ │ │ │ │ └── ResponseMessage.java
│ │ │ │ ├── exceptions
│ │ │ │ ├── RestResponseEntityExceptionHandler.java
│ │ │ │ └── notFoundExceptions
│ │ │ │ │ ├── AuthorNotFoundException.java
│ │ │ │ │ ├── BookNotFoundException.java
│ │ │ │ │ ├── CategoryNotFoundException.java
│ │ │ │ │ └── NotFoundException.java
│ │ │ │ ├── repositories
│ │ │ │ ├── AuthorRepository.java
│ │ │ │ ├── BookRepository.java
│ │ │ │ └── CategoryRepository.java
│ │ │ │ └── services
│ │ │ │ ├── Abstract
│ │ │ │ ├── AuthorService.java
│ │ │ │ ├── BookService.java
│ │ │ │ └── CategoryService.java
│ │ │ │ ├── AuthorServiceImp.java
│ │ │ │ ├── BookServiceImp.java
│ │ │ │ └── CategoryServiceImp.java
│ │ └── resources
│ │ │ ├── application.properties
│ │ │ └── logback-spring.xml
│ │ └── test
│ │ └── java
│ │ └── com
│ │ └── bookstore
│ │ └── api
│ │ └── ApiApplicationTests.java
└── bs-store
│ ├── .env
│ ├── .gitignore
│ ├── .vscode
│ └── settings.json
│ ├── README.md
│ ├── package-lock.json
│ ├── package.json
│ ├── public
│ ├── authors
│ │ ├── 1.jpg
│ │ ├── 10.jpg
│ │ ├── 11.jpg
│ │ ├── 12.jpg
│ │ ├── 13.jpg
│ │ ├── 14.jpg
│ │ ├── 15.jpg
│ │ ├── 16.jpg
│ │ ├── 17.jpg
│ │ ├── 18.jpg
│ │ ├── 19.jpg
│ │ ├── 2.jpg
│ │ ├── 20.jpg
│ │ ├── 21.jpg
│ │ ├── 3.jpg
│ │ ├── 4.jpg
│ │ ├── 5.jpg
│ │ ├── 6.jpg
│ │ ├── 7.jpg
│ │ ├── 8.jpg
│ │ └── 9.jpg
│ ├── books
│ │ ├── 1.jpg
│ │ ├── 10.jpg
│ │ ├── 100.jpg
│ │ ├── 101.jpg
│ │ ├── 102.jpg
│ │ ├── 103.jpg
│ │ ├── 104.jpg
│ │ ├── 105.jpg
│ │ ├── 106.jpg
│ │ ├── 107.jpg
│ │ ├── 108.jpg
│ │ ├── 109.jpg
│ │ ├── 11.jpg
│ │ ├── 110.jpg
│ │ ├── 111.jpg
│ │ ├── 112.jpg
│ │ ├── 113.jpg
│ │ ├── 114.jpg
│ │ ├── 115.jpg
│ │ ├── 116.jpg
│ │ ├── 117.jpg
│ │ ├── 118.jpg
│ │ ├── 119.jpg
│ │ ├── 12.jpg
│ │ ├── 120.jpg
│ │ ├── 121.jpg
│ │ ├── 122.jpg
│ │ ├── 13.jpg
│ │ ├── 14.jpg
│ │ ├── 15.jpg
│ │ ├── 16.jpg
│ │ ├── 17.jpg
│ │ ├── 18.jpg
│ │ ├── 19.jpg
│ │ ├── 2.jpg
│ │ ├── 20.jpg
│ │ ├── 21.jpg
│ │ ├── 22.jpg
│ │ ├── 23.jpg
│ │ ├── 24.jpg
│ │ ├── 25.jpg
│ │ ├── 26.jpg
│ │ ├── 27.jpg
│ │ ├── 28.jpg
│ │ ├── 29.jpg
│ │ ├── 3.jpg
│ │ ├── 30.jpg
│ │ ├── 31.jpg
│ │ ├── 32.jpg
│ │ ├── 33.jpg
│ │ ├── 34.jpg
│ │ ├── 35.jpg
│ │ ├── 36.jpg
│ │ ├── 37.jpg
│ │ ├── 38.jpg
│ │ ├── 39.jpg
│ │ ├── 4.jpg
│ │ ├── 40.jpg
│ │ ├── 41.jpg
│ │ ├── 42.jpg
│ │ ├── 43.jpg
│ │ ├── 44.jpg
│ │ ├── 45.jpg
│ │ ├── 46.jpg
│ │ ├── 47.jpg
│ │ ├── 48.jpg
│ │ ├── 49.jpg
│ │ ├── 5.jpg
│ │ ├── 50.jpg
│ │ ├── 51.jpg
│ │ ├── 52.jpg
│ │ ├── 53.jpg
│ │ ├── 54.jpg
│ │ ├── 55.jpg
│ │ ├── 56.jpg
│ │ ├── 57.jpg
│ │ ├── 58.jpg
│ │ ├── 59.jpg
│ │ ├── 6.jpg
│ │ ├── 60.jpg
│ │ ├── 61.jpg
│ │ ├── 62.jpg
│ │ ├── 63.jpg
│ │ ├── 64.jpg
│ │ ├── 65.jpg
│ │ ├── 66.jpg
│ │ ├── 67.jpg
│ │ ├── 68.jpg
│ │ ├── 69.jpg
│ │ ├── 7.jpg
│ │ ├── 70.jpg
│ │ ├── 71.jpg
│ │ ├── 72.jpg
│ │ ├── 73.jpg
│ │ ├── 74.jpg
│ │ ├── 75.jpg
│ │ ├── 76.jpg
│ │ ├── 77.jpg
│ │ ├── 78.jpg
│ │ ├── 79.jpg
│ │ ├── 8.jpg
│ │ ├── 80.jpg
│ │ ├── 81.jpg
│ │ ├── 82.jpg
│ │ ├── 83.jpg
│ │ ├── 84.jpg
│ │ ├── 85.jpg
│ │ ├── 86.jpg
│ │ ├── 87.jpg
│ │ ├── 88.jpg
│ │ ├── 89.jpg
│ │ ├── 9.jpg
│ │ ├── 90.jpg
│ │ ├── 91.jpg
│ │ ├── 92.jpg
│ │ ├── 93.jpg
│ │ ├── 94.jpg
│ │ ├── 95.jpg
│ │ ├── 96.jpg
│ │ ├── 97.jpg
│ │ ├── 98.jpg
│ │ └── 99.jpg
│ ├── favicon.ico
│ ├── index.html
│ ├── logo192.png
│ ├── logo512.png
│ ├── manifest.json
│ └── robots.txt
│ └── src
│ ├── App.css
│ ├── App.js
│ ├── App.test.js
│ ├── adminpages
│ ├── authors
│ │ ├── AddAuthor.js
│ │ └── ListAuthor.js
│ ├── books
│ │ ├── AddBook.js
│ │ ├── AddBookHtml.js
│ │ ├── AddBookValidation.js
│ │ ├── ListBook.js
│ │ └── UpdateBook.js
│ └── categories
│ │ ├── AddCategory.js
│ │ ├── ListCategory.js
│ │ └── UpdateCategory.js
│ ├── components
│ ├── adminAppbar
│ │ └── AdminAppbar.js
│ ├── authorList
│ │ └── AuthorList.js
│ ├── fab
│ │ └── SimpleFab.js
│ ├── links
│ │ └── TopLink.js
│ ├── snackBar
│ │ └── SimpleSnackbar.js
│ └── theme
│ │ ├── CustomThemeProvider.js
│ │ ├── ThemeMenu.js
│ │ └── index.js
│ ├── context
│ └── AppContext.js
│ ├── data.js
│ ├── index.css
│ ├── index.js
│ ├── logo.svg
│ ├── pages
│ └── home
│ │ └── Home.js
│ ├── reportWebVitals.js
│ ├── services
│ ├── AuthorService.js
│ ├── BookService.js
│ └── CategoryService.js
│ ├── setupTests.js
│ └── store
│ ├── actions
│ ├── authorActions.js
│ ├── bookActions.js
│ ├── categoryActions.js
│ └── settingActions.js
│ ├── configureStore.js
│ ├── initialValues
│ ├── authorItems.js
│ ├── bookItems.js
│ ├── categoryItems.js
│ └── settingItems.js
│ ├── reducers
│ ├── authorReducer.js
│ ├── bookReducer.js
│ ├── categoryReducer.js
│ └── settingReducer.js
│ └── rootReducer.js
├── day-13
├── Readme.md
├── api
│ ├── .gitignore
│ ├── .mvn
│ │ └── wrapper
│ │ │ ├── maven-wrapper.jar
│ │ │ └── maven-wrapper.properties
│ ├── Readme.md
│ ├── bin
│ │ ├── .gitignore
│ │ ├── .mvn
│ │ │ └── wrapper
│ │ │ │ ├── maven-wrapper.jar
│ │ │ │ └── maven-wrapper.properties
│ │ ├── mvnw
│ │ ├── mvnw.cmd
│ │ ├── pom.xml
│ │ └── src
│ │ │ ├── main
│ │ │ ├── java
│ │ │ │ └── com
│ │ │ │ │ └── bookstore
│ │ │ │ │ └── api
│ │ │ │ │ ├── ApiApplication.class
│ │ │ │ │ ├── config
│ │ │ │ │ ├── CorsConfig.class
│ │ │ │ │ └── ModelMapperConfig.class
│ │ │ │ │ ├── controllers
│ │ │ │ │ ├── AuthorController.class
│ │ │ │ │ ├── BookContoller.class
│ │ │ │ │ └── CategoryController.class
│ │ │ │ │ ├── entities
│ │ │ │ │ ├── Author.class
│ │ │ │ │ ├── Book.class
│ │ │ │ │ ├── Category.class
│ │ │ │ │ ├── dto
│ │ │ │ │ │ ├── BookDtoForPost.class
│ │ │ │ │ │ └── BookDtoForPut.class
│ │ │ │ │ └── models
│ │ │ │ │ │ ├── ApiErrorResponse.class
│ │ │ │ │ │ ├── ApiResponse$ApiResponseBuilder.class
│ │ │ │ │ │ ├── ApiResponse$ApiResponseBuilderImpl.class
│ │ │ │ │ │ ├── ApiResponse.class
│ │ │ │ │ │ └── ResponseMessage.class
│ │ │ │ │ ├── exceptions
│ │ │ │ │ ├── RestResponseEntityExceptionHandler.class
│ │ │ │ │ └── notFoundExceptions
│ │ │ │ │ │ ├── AuthorNotFoundException.class
│ │ │ │ │ │ ├── BookNotFoundException.class
│ │ │ │ │ │ ├── CategoryNotFoundException.class
│ │ │ │ │ │ └── NotFoundException.class
│ │ │ │ │ ├── repositories
│ │ │ │ │ ├── AuthorRepository.class
│ │ │ │ │ ├── BookRepository.class
│ │ │ │ │ └── CategoryRepository.class
│ │ │ │ │ └── services
│ │ │ │ │ ├── Abstract
│ │ │ │ │ ├── AuthorService.class
│ │ │ │ │ ├── BookService.class
│ │ │ │ │ └── CategoryService.class
│ │ │ │ │ ├── AuthorServiceImp.class
│ │ │ │ │ ├── BookServiceImp.class
│ │ │ │ │ └── CategoryServiceImp.class
│ │ │ └── resources
│ │ │ │ ├── application.properties
│ │ │ │ └── logback-spring.xml
│ │ │ └── test
│ │ │ └── java
│ │ │ └── com
│ │ │ └── bookstore
│ │ │ └── api
│ │ │ └── ApiApplicationTests.class
│ ├── mvnw
│ ├── mvnw.cmd
│ ├── pom.xml
│ └── src
│ │ ├── main
│ │ ├── java
│ │ │ └── com
│ │ │ │ └── bookstore
│ │ │ │ └── api
│ │ │ │ ├── ApiApplication.java
│ │ │ │ ├── config
│ │ │ │ ├── ApplicationSecurityConfig.java
│ │ │ │ ├── CorsConfig.java
│ │ │ │ ├── ModelMapperConfig.java
│ │ │ │ └── PasswordConfig.java
│ │ │ │ ├── controllers
│ │ │ │ ├── AuthorController.java
│ │ │ │ ├── BookContoller.java
│ │ │ │ └── CategoryController.java
│ │ │ │ ├── entities
│ │ │ │ ├── Author.java
│ │ │ │ ├── Book.java
│ │ │ │ ├── Category.java
│ │ │ │ ├── Role.java
│ │ │ │ ├── User.java
│ │ │ │ ├── UserRole.java
│ │ │ │ ├── dto
│ │ │ │ │ ├── BookDtoForPost.java
│ │ │ │ │ └── BookDtoForPut.java
│ │ │ │ └── models
│ │ │ │ │ ├── ApiErrorResponse.java
│ │ │ │ │ ├── ApiResponse.java
│ │ │ │ │ └── ResponseMessage.java
│ │ │ │ ├── exceptions
│ │ │ │ ├── RestResponseEntityExceptionHandler.java
│ │ │ │ └── notFoundExceptions
│ │ │ │ │ ├── AuthorNotFoundException.java
│ │ │ │ │ ├── BookNotFoundException.java
│ │ │ │ │ ├── CategoryNotFoundException.java
│ │ │ │ │ └── NotFoundException.java
│ │ │ │ ├── repositories
│ │ │ │ ├── AuthorRepository.java
│ │ │ │ ├── BookRepository.java
│ │ │ │ ├── CategoryRepository.java
│ │ │ │ ├── RoleRepository.java
│ │ │ │ ├── UserRepository.java
│ │ │ │ └── UserRoleRepository.java
│ │ │ │ ├── security
│ │ │ │ ├── ApplicationUser.java
│ │ │ │ ├── ApplicationUserPermission.java
│ │ │ │ └── ApplicationUserRole.java
│ │ │ │ └── services
│ │ │ │ ├── Abstract
│ │ │ │ ├── ApplicationUserDao.java
│ │ │ │ ├── AuthorService.java
│ │ │ │ ├── BookService.java
│ │ │ │ ├── CategoryService.java
│ │ │ │ └── UserService.java
│ │ │ │ ├── ApplicationUserService.java
│ │ │ │ ├── AuthorServiceImp.java
│ │ │ │ ├── BookServiceImp.java
│ │ │ │ ├── CategoryServiceImp.java
│ │ │ │ ├── FakeApplicationUserDaoService.java
│ │ │ │ └── UserServiceImp.java
│ │ └── resources
│ │ │ ├── application.properties
│ │ │ └── logback-spring.xml
│ │ └── test
│ │ └── java
│ │ └── com
│ │ └── bookstore
│ │ └── api
│ │ └── ApiApplicationTests.java
├── bs-store
│ ├── .env
│ ├── .gitignore
│ ├── .vscode
│ │ └── settings.json
│ ├── README.md
│ ├── package-lock.json
│ ├── package.json
│ ├── public
│ │ ├── authors
│ │ │ ├── 1.jpg
│ │ │ ├── 10.jpg
│ │ │ ├── 11.jpg
│ │ │ ├── 12.jpg
│ │ │ ├── 13.jpg
│ │ │ ├── 14.jpg
│ │ │ ├── 15.jpg
│ │ │ ├── 16.jpg
│ │ │ ├── 17.jpg
│ │ │ ├── 18.jpg
│ │ │ ├── 19.jpg
│ │ │ ├── 2.jpg
│ │ │ ├── 20.jpg
│ │ │ ├── 21.jpg
│ │ │ ├── 3.jpg
│ │ │ ├── 4.jpg
│ │ │ ├── 5.jpg
│ │ │ ├── 6.jpg
│ │ │ ├── 7.jpg
│ │ │ ├── 8.jpg
│ │ │ └── 9.jpg
│ │ ├── books
│ │ │ ├── 1.jpg
│ │ │ ├── 10.jpg
│ │ │ ├── 100.jpg
│ │ │ ├── 101.jpg
│ │ │ ├── 102.jpg
│ │ │ ├── 103.jpg
│ │ │ ├── 104.jpg
│ │ │ ├── 105.jpg
│ │ │ ├── 106.jpg
│ │ │ ├── 107.jpg
│ │ │ ├── 108.jpg
│ │ │ ├── 109.jpg
│ │ │ ├── 11.jpg
│ │ │ ├── 110.jpg
│ │ │ ├── 111.jpg
│ │ │ ├── 112.jpg
│ │ │ ├── 113.jpg
│ │ │ ├── 114.jpg
│ │ │ ├── 115.jpg
│ │ │ ├── 116.jpg
│ │ │ ├── 117.jpg
│ │ │ ├── 118.jpg
│ │ │ ├── 119.jpg
│ │ │ ├── 12.jpg
│ │ │ ├── 120.jpg
│ │ │ ├── 121.jpg
│ │ │ ├── 122.jpg
│ │ │ ├── 13.jpg
│ │ │ ├── 14.jpg
│ │ │ ├── 15.jpg
│ │ │ ├── 16.jpg
│ │ │ ├── 17.jpg
│ │ │ ├── 18.jpg
│ │ │ ├── 19.jpg
│ │ │ ├── 2.jpg
│ │ │ ├── 20.jpg
│ │ │ ├── 21.jpg
│ │ │ ├── 22.jpg
│ │ │ ├── 23.jpg
│ │ │ ├── 24.jpg
│ │ │ ├── 25.jpg
│ │ │ ├── 26.jpg
│ │ │ ├── 27.jpg
│ │ │ ├── 28.jpg
│ │ │ ├── 29.jpg
│ │ │ ├── 3.jpg
│ │ │ ├── 30.jpg
│ │ │ ├── 31.jpg
│ │ │ ├── 32.jpg
│ │ │ ├── 33.jpg
│ │ │ ├── 34.jpg
│ │ │ ├── 35.jpg
│ │ │ ├── 36.jpg
│ │ │ ├── 37.jpg
│ │ │ ├── 38.jpg
│ │ │ ├── 39.jpg
│ │ │ ├── 4.jpg
│ │ │ ├── 40.jpg
│ │ │ ├── 41.jpg
│ │ │ ├── 42.jpg
│ │ │ ├── 43.jpg
│ │ │ ├── 44.jpg
│ │ │ ├── 45.jpg
│ │ │ ├── 46.jpg
│ │ │ ├── 47.jpg
│ │ │ ├── 48.jpg
│ │ │ ├── 49.jpg
│ │ │ ├── 5.jpg
│ │ │ ├── 50.jpg
│ │ │ ├── 51.jpg
│ │ │ ├── 52.jpg
│ │ │ ├── 53.jpg
│ │ │ ├── 54.jpg
│ │ │ ├── 55.jpg
│ │ │ ├── 56.jpg
│ │ │ ├── 57.jpg
│ │ │ ├── 58.jpg
│ │ │ ├── 59.jpg
│ │ │ ├── 6.jpg
│ │ │ ├── 60.jpg
│ │ │ ├── 61.jpg
│ │ │ ├── 62.jpg
│ │ │ ├── 63.jpg
│ │ │ ├── 64.jpg
│ │ │ ├── 65.jpg
│ │ │ ├── 66.jpg
│ │ │ ├── 67.jpg
│ │ │ ├── 68.jpg
│ │ │ ├── 69.jpg
│ │ │ ├── 7.jpg
│ │ │ ├── 70.jpg
│ │ │ ├── 71.jpg
│ │ │ ├── 72.jpg
│ │ │ ├── 73.jpg
│ │ │ ├── 74.jpg
│ │ │ ├── 75.jpg
│ │ │ ├── 76.jpg
│ │ │ ├── 77.jpg
│ │ │ ├── 78.jpg
│ │ │ ├── 79.jpg
│ │ │ ├── 8.jpg
│ │ │ ├── 80.jpg
│ │ │ ├── 81.jpg
│ │ │ ├── 82.jpg
│ │ │ ├── 83.jpg
│ │ │ ├── 84.jpg
│ │ │ ├── 85.jpg
│ │ │ ├── 86.jpg
│ │ │ ├── 87.jpg
│ │ │ ├── 88.jpg
│ │ │ ├── 89.jpg
│ │ │ ├── 9.jpg
│ │ │ ├── 90.jpg
│ │ │ ├── 91.jpg
│ │ │ ├── 92.jpg
│ │ │ ├── 93.jpg
│ │ │ ├── 94.jpg
│ │ │ ├── 95.jpg
│ │ │ ├── 96.jpg
│ │ │ ├── 97.jpg
│ │ │ ├── 98.jpg
│ │ │ └── 99.jpg
│ │ ├── favicon.ico
│ │ ├── index.html
│ │ ├── logo192.png
│ │ ├── logo512.png
│ │ ├── manifest.json
│ │ └── robots.txt
│ └── src
│ │ ├── App.css
│ │ ├── App.js
│ │ ├── App.test.js
│ │ ├── adminpages
│ │ ├── authors
│ │ │ ├── AddAuthor.js
│ │ │ └── ListAuthor.js
│ │ ├── books
│ │ │ ├── AddBook.js
│ │ │ ├── AddBookHtml.js
│ │ │ ├── AddBookValidation.js
│ │ │ └── ListBook.js
│ │ └── categories
│ │ │ ├── AddCategory.js
│ │ │ ├── ListCategory.js
│ │ │ └── UpdateCategory.js
│ │ ├── components
│ │ ├── adminAppbar
│ │ │ └── AdminAppbar.js
│ │ ├── authorList
│ │ │ └── AuthorList.js
│ │ ├── fab
│ │ │ └── SimpleFab.js
│ │ ├── links
│ │ │ └── TopLink.js
│ │ ├── snackBar
│ │ │ └── SimpleSnackbar.js
│ │ └── theme
│ │ │ ├── CustomThemeProvider.js
│ │ │ ├── ThemeMenu.js
│ │ │ └── index.js
│ │ ├── context
│ │ └── AppContext.js
│ │ ├── data.js
│ │ ├── index.css
│ │ ├── index.js
│ │ ├── logo.svg
│ │ ├── pages
│ │ └── home
│ │ │ └── Home.js
│ │ ├── reportWebVitals.js
│ │ ├── services
│ │ ├── AuthorService.js
│ │ ├── BookService.js
│ │ └── CategoryService.js
│ │ ├── setupTests.js
│ │ └── store
│ │ ├── actions
│ │ ├── authorActions.js
│ │ ├── bookActions.js
│ │ ├── categoryActions.js
│ │ └── settingActions.js
│ │ ├── configureStore.js
│ │ ├── initialValues
│ │ ├── authorItems.js
│ │ ├── bookItems.js
│ │ ├── categoryItems.js
│ │ └── settingItems.js
│ │ ├── reducers
│ │ ├── authorReducer.js
│ │ ├── bookReducer.js
│ │ ├── categoryReducer.js
│ │ └── settingReducer.js
│ │ └── rootReducer.js
└── day-13.drawio
├── day-14
├── Readme.md
├── api
│ ├── .gitignore
│ ├── .mvn
│ │ └── wrapper
│ │ │ ├── maven-wrapper.jar
│ │ │ └── maven-wrapper.properties
│ ├── Readme.md
│ ├── bin
│ │ ├── .gitignore
│ │ ├── .mvn
│ │ │ └── wrapper
│ │ │ │ ├── maven-wrapper.jar
│ │ │ │ └── maven-wrapper.properties
│ │ ├── mvnw
│ │ ├── mvnw.cmd
│ │ ├── pom.xml
│ │ └── src
│ │ │ ├── main
│ │ │ ├── java
│ │ │ │ └── com
│ │ │ │ │ └── bookstore
│ │ │ │ │ └── api
│ │ │ │ │ ├── ApiApplication.class
│ │ │ │ │ ├── config
│ │ │ │ │ ├── CorsConfig.class
│ │ │ │ │ └── ModelMapperConfig.class
│ │ │ │ │ ├── controllers
│ │ │ │ │ ├── AuthorController.class
│ │ │ │ │ ├── BookContoller.class
│ │ │ │ │ └── CategoryController.class
│ │ │ │ │ ├── entities
│ │ │ │ │ ├── Author.class
│ │ │ │ │ ├── Book.class
│ │ │ │ │ ├── Category.class
│ │ │ │ │ ├── dto
│ │ │ │ │ │ ├── BookDtoForPost.class
│ │ │ │ │ │ └── BookDtoForPut.class
│ │ │ │ │ └── models
│ │ │ │ │ │ ├── ApiErrorResponse.class
│ │ │ │ │ │ ├── ApiResponse$ApiResponseBuilder.class
│ │ │ │ │ │ ├── ApiResponse$ApiResponseBuilderImpl.class
│ │ │ │ │ │ ├── ApiResponse.class
│ │ │ │ │ │ └── ResponseMessage.class
│ │ │ │ │ ├── exceptions
│ │ │ │ │ ├── RestResponseEntityExceptionHandler.class
│ │ │ │ │ └── notFoundExceptions
│ │ │ │ │ │ ├── AuthorNotFoundException.class
│ │ │ │ │ │ ├── BookNotFoundException.class
│ │ │ │ │ │ ├── CategoryNotFoundException.class
│ │ │ │ │ │ └── NotFoundException.class
│ │ │ │ │ ├── repositories
│ │ │ │ │ ├── AuthorRepository.class
│ │ │ │ │ ├── BookRepository.class
│ │ │ │ │ └── CategoryRepository.class
│ │ │ │ │ └── services
│ │ │ │ │ ├── Abstract
│ │ │ │ │ ├── AuthorService.class
│ │ │ │ │ ├── BookService.class
│ │ │ │ │ └── CategoryService.class
│ │ │ │ │ ├── AuthorServiceImp.class
│ │ │ │ │ ├── BookServiceImp.class
│ │ │ │ │ └── CategoryServiceImp.class
│ │ │ └── resources
│ │ │ │ ├── application.properties
│ │ │ │ └── logback-spring.xml
│ │ │ └── test
│ │ │ └── java
│ │ │ └── com
│ │ │ └── bookstore
│ │ │ └── api
│ │ │ └── ApiApplicationTests.class
│ ├── mvnw
│ ├── mvnw.cmd
│ ├── pom.xml
│ └── src
│ │ ├── main
│ │ ├── java
│ │ │ └── com
│ │ │ │ └── bookstore
│ │ │ │ └── api
│ │ │ │ ├── ApiApplication.java
│ │ │ │ ├── config
│ │ │ │ ├── ApplicationSecurityConfig.java
│ │ │ │ ├── CorsConfig.java
│ │ │ │ ├── ModelMapperConfig.java
│ │ │ │ └── PasswordConfig.java
│ │ │ │ ├── controllers
│ │ │ │ ├── AuthController.java
│ │ │ │ ├── AuthorController.java
│ │ │ │ ├── BookContoller.java
│ │ │ │ ├── CategoryController.java
│ │ │ │ ├── RoleController.java
│ │ │ │ └── UserController.java
│ │ │ │ ├── entities
│ │ │ │ ├── Author.java
│ │ │ │ ├── Book.java
│ │ │ │ ├── Category.java
│ │ │ │ ├── RefreshToken.java
│ │ │ │ ├── Role.java
│ │ │ │ ├── User.java
│ │ │ │ ├── dto
│ │ │ │ │ ├── AuthDto.java
│ │ │ │ │ ├── BookDtoForPost.java
│ │ │ │ │ ├── BookDtoForPut.java
│ │ │ │ │ ├── RefreshDto.java
│ │ │ │ │ ├── UserDto.java
│ │ │ │ │ ├── UserRequest.java
│ │ │ │ │ └── UserRequestForRegister.java
│ │ │ │ └── models
│ │ │ │ │ ├── ApiErrorResponse.java
│ │ │ │ │ ├── ApiResponse.java
│ │ │ │ │ └── ResponseMessage.java
│ │ │ │ ├── exceptions
│ │ │ │ ├── RestResponseEntityExceptionHandler.java
│ │ │ │ └── notFoundExceptions
│ │ │ │ │ ├── AuthorNotFoundException.java
│ │ │ │ │ ├── BookNotFoundException.java
│ │ │ │ │ ├── CategoryNotFoundException.java
│ │ │ │ │ ├── NotFoundException.java
│ │ │ │ │ └── UserNotFoundException.java
│ │ │ │ ├── jwt
│ │ │ │ ├── JwtAuthenticationEntryPoint.java
│ │ │ │ ├── JwtAuthenticationFilter.java
│ │ │ │ ├── JwtConfig.java
│ │ │ │ ├── JwtSecretKey.java
│ │ │ │ └── JwtTokenProvider.java
│ │ │ │ ├── repositories
│ │ │ │ ├── AuthorRepository.java
│ │ │ │ ├── BookRepository.java
│ │ │ │ ├── CategoryRepository.java
│ │ │ │ ├── RefreshTokenRepository.java
│ │ │ │ ├── RoleRepository.java
│ │ │ │ └── UserRepository.java
│ │ │ │ ├── security
│ │ │ │ ├── ApplicationUser.java
│ │ │ │ ├── ApplicationUserPermission.java
│ │ │ │ └── ApplicationUserRole.java
│ │ │ │ └── services
│ │ │ │ ├── Abstract
│ │ │ │ ├── ApplicationUserDao.java
│ │ │ │ ├── AuthorService.java
│ │ │ │ ├── BookService.java
│ │ │ │ ├── CategoryService.java
│ │ │ │ ├── RefreshTokenService.java
│ │ │ │ ├── RoleService.java
│ │ │ │ └── UserService.java
│ │ │ │ ├── ApplicationUserService.java
│ │ │ │ ├── AuthorServiceImp.java
│ │ │ │ ├── BookServiceImp.java
│ │ │ │ ├── CategoryServiceImp.java
│ │ │ │ ├── FakeApplicationUserDaoService.java
│ │ │ │ ├── RefreshTokenServiceImp.java
│ │ │ │ ├── RoleServiceImp.java
│ │ │ │ └── UserServiceImp.java
│ │ └── resources
│ │ │ ├── application.properties
│ │ │ └── logback-spring.xml
│ │ └── test
│ │ └── java
│ │ └── com
│ │ └── bookstore
│ │ └── api
│ │ └── ApiApplicationTests.java
└── bs-store
│ ├── .env
│ ├── .gitignore
│ ├── .vscode
│ └── settings.json
│ ├── README.md
│ ├── package-lock.json
│ ├── package.json
│ ├── public
│ ├── authors
│ │ ├── 1.jpg
│ │ ├── 10.jpg
│ │ ├── 11.jpg
│ │ ├── 12.jpg
│ │ ├── 13.jpg
│ │ ├── 14.jpg
│ │ ├── 15.jpg
│ │ ├── 16.jpg
│ │ ├── 17.jpg
│ │ ├── 18.jpg
│ │ ├── 19.jpg
│ │ ├── 2.jpg
│ │ ├── 20.jpg
│ │ ├── 21.jpg
│ │ ├── 3.jpg
│ │ ├── 4.jpg
│ │ ├── 5.jpg
│ │ ├── 6.jpg
│ │ ├── 7.jpg
│ │ ├── 8.jpg
│ │ └── 9.jpg
│ ├── books
│ │ ├── 1.jpg
│ │ ├── 10.jpg
│ │ ├── 100.jpg
│ │ ├── 101.jpg
│ │ ├── 102.jpg
│ │ ├── 103.jpg
│ │ ├── 104.jpg
│ │ ├── 105.jpg
│ │ ├── 106.jpg
│ │ ├── 107.jpg
│ │ ├── 108.jpg
│ │ ├── 109.jpg
│ │ ├── 11.jpg
│ │ ├── 110.jpg
│ │ ├── 111.jpg
│ │ ├── 112.jpg
│ │ ├── 113.jpg
│ │ ├── 114.jpg
│ │ ├── 115.jpg
│ │ ├── 116.jpg
│ │ ├── 117.jpg
│ │ ├── 118.jpg
│ │ ├── 119.jpg
│ │ ├── 12.jpg
│ │ ├── 120.jpg
│ │ ├── 121.jpg
│ │ ├── 122.jpg
│ │ ├── 13.jpg
│ │ ├── 14.jpg
│ │ ├── 15.jpg
│ │ ├── 16.jpg
│ │ ├── 17.jpg
│ │ ├── 18.jpg
│ │ ├── 19.jpg
│ │ ├── 2.jpg
│ │ ├── 20.jpg
│ │ ├── 21.jpg
│ │ ├── 22.jpg
│ │ ├── 23.jpg
│ │ ├── 24.jpg
│ │ ├── 25.jpg
│ │ ├── 26.jpg
│ │ ├── 27.jpg
│ │ ├── 28.jpg
│ │ ├── 29.jpg
│ │ ├── 3.jpg
│ │ ├── 30.jpg
│ │ ├── 31.jpg
│ │ ├── 32.jpg
│ │ ├── 33.jpg
│ │ ├── 34.jpg
│ │ ├── 35.jpg
│ │ ├── 36.jpg
│ │ ├── 37.jpg
│ │ ├── 38.jpg
│ │ ├── 39.jpg
│ │ ├── 4.jpg
│ │ ├── 40.jpg
│ │ ├── 41.jpg
│ │ ├── 42.jpg
│ │ ├── 43.jpg
│ │ ├── 44.jpg
│ │ ├── 45.jpg
│ │ ├── 46.jpg
│ │ ├── 47.jpg
│ │ ├── 48.jpg
│ │ ├── 49.jpg
│ │ ├── 5.jpg
│ │ ├── 50.jpg
│ │ ├── 51.jpg
│ │ ├── 52.jpg
│ │ ├── 53.jpg
│ │ ├── 54.jpg
│ │ ├── 55.jpg
│ │ ├── 56.jpg
│ │ ├── 57.jpg
│ │ ├── 58.jpg
│ │ ├── 59.jpg
│ │ ├── 6.jpg
│ │ ├── 60.jpg
│ │ ├── 61.jpg
│ │ ├── 62.jpg
│ │ ├── 63.jpg
│ │ ├── 64.jpg
│ │ ├── 65.jpg
│ │ ├── 66.jpg
│ │ ├── 67.jpg
│ │ ├── 68.jpg
│ │ ├── 69.jpg
│ │ ├── 7.jpg
│ │ ├── 70.jpg
│ │ ├── 71.jpg
│ │ ├── 72.jpg
│ │ ├── 73.jpg
│ │ ├── 74.jpg
│ │ ├── 75.jpg
│ │ ├── 76.jpg
│ │ ├── 77.jpg
│ │ ├── 78.jpg
│ │ ├── 79.jpg
│ │ ├── 8.jpg
│ │ ├── 80.jpg
│ │ ├── 81.jpg
│ │ ├── 82.jpg
│ │ ├── 83.jpg
│ │ ├── 84.jpg
│ │ ├── 85.jpg
│ │ ├── 86.jpg
│ │ ├── 87.jpg
│ │ ├── 88.jpg
│ │ ├── 89.jpg
│ │ ├── 9.jpg
│ │ ├── 90.jpg
│ │ ├── 91.jpg
│ │ ├── 92.jpg
│ │ ├── 93.jpg
│ │ ├── 94.jpg
│ │ ├── 95.jpg
│ │ ├── 96.jpg
│ │ ├── 97.jpg
│ │ ├── 98.jpg
│ │ └── 99.jpg
│ ├── favicon.ico
│ ├── index.html
│ ├── logo192.png
│ ├── logo512.png
│ ├── manifest.json
│ └── robots.txt
│ └── src
│ ├── App.css
│ ├── App.js
│ ├── App.test.js
│ ├── adminpages
│ ├── authors
│ │ ├── AddAuthor.js
│ │ └── ListAuthor.js
│ ├── books
│ │ ├── AddBook.js
│ │ ├── AddBookHtml.js
│ │ ├── AddBookValidation.js
│ │ └── ListBook.js
│ └── categories
│ │ ├── AddCategory.js
│ │ ├── ListCategory.js
│ │ └── UpdateCategory.js
│ ├── components
│ ├── adminAppbar
│ │ └── AdminAppbar.js
│ ├── authorList
│ │ └── AuthorList.js
│ ├── fab
│ │ └── SimpleFab.js
│ ├── links
│ │ └── TopLink.js
│ ├── snackBar
│ │ └── SimpleSnackbar.js
│ └── theme
│ │ ├── CustomThemeProvider.js
│ │ ├── ThemeMenu.js
│ │ └── index.js
│ ├── context
│ └── AppContext.js
│ ├── data.js
│ ├── index.css
│ ├── index.js
│ ├── logo.svg
│ ├── pages
│ └── home
│ │ └── Home.js
│ ├── reportWebVitals.js
│ ├── services
│ ├── AuthorService.js
│ ├── BookService.js
│ └── CategoryService.js
│ ├── setupTests.js
│ └── store
│ ├── actions
│ ├── authorActions.js
│ ├── bookActions.js
│ ├── categoryActions.js
│ └── settingActions.js
│ ├── configureStore.js
│ ├── initialValues
│ ├── authorItems.js
│ ├── bookItems.js
│ ├── categoryItems.js
│ └── settingItems.js
│ ├── reducers
│ ├── authorReducer.js
│ ├── bookReducer.js
│ ├── categoryReducer.js
│ └── settingReducer.js
│ └── rootReducer.js
└── day-15
├── api-calls
├── adminRequest.js
├── editorRequest.js
├── node_modules
│ ├── .package-lock.json
│ ├── asynckit
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bench.js
│ │ ├── index.js
│ │ ├── lib
│ │ │ ├── abort.js
│ │ │ ├── async.js
│ │ │ ├── defer.js
│ │ │ ├── iterate.js
│ │ │ ├── readable_asynckit.js
│ │ │ ├── readable_parallel.js
│ │ │ ├── readable_serial.js
│ │ │ ├── readable_serial_ordered.js
│ │ │ ├── state.js
│ │ │ ├── streamify.js
│ │ │ └── terminator.js
│ │ ├── package.json
│ │ ├── parallel.js
│ │ ├── serial.js
│ │ ├── serialOrdered.js
│ │ └── stream.js
│ ├── axios
│ │ ├── CHANGELOG.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── SECURITY.md
│ │ ├── UPGRADE_GUIDE.md
│ │ ├── dist
│ │ │ ├── axios.js
│ │ │ ├── axios.map
│ │ │ ├── axios.min.js
│ │ │ └── axios.min.map
│ │ ├── index.d.ts
│ │ ├── index.js
│ │ ├── lib
│ │ │ ├── adapters
│ │ │ │ ├── README.md
│ │ │ │ ├── http.js
│ │ │ │ └── xhr.js
│ │ │ ├── axios.js
│ │ │ ├── cancel
│ │ │ │ ├── CancelToken.js
│ │ │ │ ├── CanceledError.js
│ │ │ │ └── isCancel.js
│ │ │ ├── core
│ │ │ │ ├── Axios.js
│ │ │ │ ├── AxiosError.js
│ │ │ │ ├── InterceptorManager.js
│ │ │ │ ├── README.md
│ │ │ │ ├── buildFullPath.js
│ │ │ │ ├── dispatchRequest.js
│ │ │ │ ├── mergeConfig.js
│ │ │ │ ├── settle.js
│ │ │ │ └── transformData.js
│ │ │ ├── defaults
│ │ │ │ ├── env
│ │ │ │ │ └── FormData.js
│ │ │ │ ├── index.js
│ │ │ │ └── transitional.js
│ │ │ ├── env
│ │ │ │ ├── README.md
│ │ │ │ └── data.js
│ │ │ ├── helpers
│ │ │ │ ├── README.md
│ │ │ │ ├── bind.js
│ │ │ │ ├── buildURL.js
│ │ │ │ ├── combineURLs.js
│ │ │ │ ├── cookies.js
│ │ │ │ ├── deprecatedMethod.js
│ │ │ │ ├── isAbsoluteURL.js
│ │ │ │ ├── isAxiosError.js
│ │ │ │ ├── isURLSameOrigin.js
│ │ │ │ ├── normalizeHeaderName.js
│ │ │ │ ├── null.js
│ │ │ │ ├── parseHeaders.js
│ │ │ │ ├── parseProtocol.js
│ │ │ │ ├── spread.js
│ │ │ │ ├── toFormData.js
│ │ │ │ └── validator.js
│ │ │ └── utils.js
│ │ ├── package.json
│ │ ├── tsconfig.json
│ │ └── tslint.json
│ ├── combined-stream
│ │ ├── License
│ │ ├── Readme.md
│ │ ├── lib
│ │ │ └── combined_stream.js
│ │ ├── package.json
│ │ └── yarn.lock
│ ├── delayed-stream
│ │ ├── .npmignore
│ │ ├── License
│ │ ├── Makefile
│ │ ├── Readme.md
│ │ ├── lib
│ │ │ └── delayed_stream.js
│ │ └── package.json
│ ├── follow-redirects
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── debug.js
│ │ ├── http.js
│ │ ├── https.js
│ │ ├── index.js
│ │ └── package.json
│ ├── form-data
│ │ ├── License
│ │ ├── README.md.bak
│ │ ├── Readme.md
│ │ ├── index.d.ts
│ │ ├── lib
│ │ │ ├── browser.js
│ │ │ ├── form_data.js
│ │ │ └── populate.js
│ │ └── package.json
│ ├── mime-db
│ │ ├── HISTORY.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── db.json
│ │ ├── index.js
│ │ └── package.json
│ └── mime-types
│ │ ├── HISTORY.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── index.js
│ │ └── package.json
├── package-lock.json
├── package.json
└── userRequest.js
├── api
├── .gitignore
├── .mvn
│ └── wrapper
│ │ ├── maven-wrapper.jar
│ │ └── maven-wrapper.properties
├── Readme.md
├── Todo.md
├── bin
│ ├── .gitignore
│ ├── .mvn
│ │ └── wrapper
│ │ │ ├── maven-wrapper.jar
│ │ │ └── maven-wrapper.properties
│ ├── mvnw
│ ├── mvnw.cmd
│ ├── pom.xml
│ └── src
│ │ ├── main
│ │ ├── java
│ │ │ └── com
│ │ │ │ └── bookstore
│ │ │ │ └── api
│ │ │ │ ├── ApiApplication.class
│ │ │ │ ├── config
│ │ │ │ ├── CorsConfig.class
│ │ │ │ └── ModelMapperConfig.class
│ │ │ │ ├── controllers
│ │ │ │ ├── AuthorController.class
│ │ │ │ ├── BookContoller.class
│ │ │ │ └── CategoryController.class
│ │ │ │ ├── entities
│ │ │ │ ├── Author.class
│ │ │ │ ├── Book.class
│ │ │ │ ├── Category.class
│ │ │ │ ├── dto
│ │ │ │ │ ├── BookDtoForPost.class
│ │ │ │ │ └── BookDtoForPut.class
│ │ │ │ └── models
│ │ │ │ │ ├── ApiErrorResponse.class
│ │ │ │ │ ├── ApiResponse$ApiResponseBuilder.class
│ │ │ │ │ ├── ApiResponse$ApiResponseBuilderImpl.class
│ │ │ │ │ ├── ApiResponse.class
│ │ │ │ │ └── ResponseMessage.class
│ │ │ │ ├── exceptions
│ │ │ │ ├── RestResponseEntityExceptionHandler.class
│ │ │ │ └── notFoundExceptions
│ │ │ │ │ ├── AuthorNotFoundException.class
│ │ │ │ │ ├── BookNotFoundException.class
│ │ │ │ │ ├── CategoryNotFoundException.class
│ │ │ │ │ └── NotFoundException.class
│ │ │ │ ├── repositories
│ │ │ │ ├── AuthorRepository.class
│ │ │ │ ├── BookRepository.class
│ │ │ │ └── CategoryRepository.class
│ │ │ │ └── services
│ │ │ │ ├── Abstract
│ │ │ │ ├── AuthorService.class
│ │ │ │ ├── BookService.class
│ │ │ │ └── CategoryService.class
│ │ │ │ ├── AuthorServiceImp.class
│ │ │ │ ├── BookServiceImp.class
│ │ │ │ └── CategoryServiceImp.class
│ │ └── resources
│ │ │ ├── application.properties
│ │ │ └── logback-spring.xml
│ │ └── test
│ │ └── java
│ │ └── com
│ │ └── bookstore
│ │ └── api
│ │ └── ApiApplicationTests.class
├── mvnw
├── mvnw.cmd
├── pom.xml
└── src
│ ├── main
│ ├── java
│ │ └── com
│ │ │ └── bookstore
│ │ │ └── api
│ │ │ ├── ApiApplication.java
│ │ │ ├── config
│ │ │ ├── ApplicationSecurityConfig.java
│ │ │ ├── CorsConfig.java
│ │ │ ├── ModelMapperConfig.java
│ │ │ └── PasswordConfig.java
│ │ │ ├── controllers
│ │ │ ├── AuthController.java
│ │ │ ├── AuthorController.java
│ │ │ ├── BookContoller.java
│ │ │ ├── CategoryController.java
│ │ │ ├── RoleController.java
│ │ │ └── UserController.java
│ │ │ ├── entities
│ │ │ ├── Author.java
│ │ │ ├── Book.java
│ │ │ ├── Category.java
│ │ │ ├── RefreshToken.java
│ │ │ ├── Role.java
│ │ │ ├── User.java
│ │ │ ├── dto
│ │ │ │ ├── AuthDto.java
│ │ │ │ ├── BookDtoForPost.java
│ │ │ │ ├── BookDtoForPut.java
│ │ │ │ ├── RefreshDto.java
│ │ │ │ ├── UserDto.java
│ │ │ │ ├── UserRequest.java
│ │ │ │ └── UserRequestForRegister.java
│ │ │ └── models
│ │ │ │ ├── ApiErrorResponse.java
│ │ │ │ ├── ApiResponse.java
│ │ │ │ └── ResponseMessage.java
│ │ │ ├── exceptions
│ │ │ ├── RestResponseEntityExceptionHandler.java
│ │ │ └── notFoundExceptions
│ │ │ │ ├── AuthorNotFoundException.java
│ │ │ │ ├── BookNotFoundException.java
│ │ │ │ ├── CategoryNotFoundException.java
│ │ │ │ ├── NotFoundException.java
│ │ │ │ └── UserNotFoundException.java
│ │ │ ├── jwt
│ │ │ ├── JwtAuthenticationEntryPoint.java
│ │ │ ├── JwtAuthenticationFilter.java
│ │ │ ├── JwtConfig.java
│ │ │ ├── JwtSecretKey.java
│ │ │ └── JwtTokenProvider.java
│ │ │ ├── repositories
│ │ │ ├── AuthorRepository.java
│ │ │ ├── BookRepository.java
│ │ │ ├── CategoryRepository.java
│ │ │ ├── RefreshTokenRepository.java
│ │ │ ├── RoleRepository.java
│ │ │ └── UserRepository.java
│ │ │ ├── security
│ │ │ ├── ApplicationUser.java
│ │ │ ├── ApplicationUserPermission.java
│ │ │ └── ApplicationUserRole.java
│ │ │ └── services
│ │ │ ├── Abstract
│ │ │ ├── ApplicationUserDao.java
│ │ │ ├── AuthorService.java
│ │ │ ├── BookService.java
│ │ │ ├── CategoryService.java
│ │ │ ├── RefreshTokenService.java
│ │ │ ├── RoleService.java
│ │ │ └── UserService.java
│ │ │ ├── ApplicationUserService.java
│ │ │ ├── AuthorServiceImp.java
│ │ │ ├── BookServiceImp.java
│ │ │ ├── CategoryServiceImp.java
│ │ │ ├── FakeApplicationUserDaoService.java
│ │ │ ├── RefreshTokenServiceImp.java
│ │ │ ├── RoleServiceImp.java
│ │ │ └── UserServiceImp.java
│ └── resources
│ │ ├── application.properties
│ │ └── logback-spring.xml
│ └── test
│ └── java
│ └── com
│ └── bookstore
│ └── api
│ └── ApiApplicationTests.java
└── bs-store
├── .env
├── .gitignore
├── .vscode
└── settings.json
├── README.md
├── package-lock.json
├── package.json
├── public
├── authors
│ ├── 1.jpg
│ ├── 10.jpg
│ ├── 11.jpg
│ ├── 12.jpg
│ ├── 13.jpg
│ ├── 14.jpg
│ ├── 15.jpg
│ ├── 16.jpg
│ ├── 17.jpg
│ ├── 18.jpg
│ ├── 19.jpg
│ ├── 2.jpg
│ ├── 20.jpg
│ ├── 21.jpg
│ ├── 3.jpg
│ ├── 4.jpg
│ ├── 5.jpg
│ ├── 6.jpg
│ ├── 7.jpg
│ ├── 8.jpg
│ └── 9.jpg
├── banner
│ └── banner.jpg
├── books
│ ├── 1.jpg
│ ├── 10.jpg
│ ├── 100.jpg
│ ├── 101.jpg
│ ├── 102.jpg
│ ├── 103.jpg
│ ├── 104.jpg
│ ├── 105.jpg
│ ├── 106.jpg
│ ├── 107.jpg
│ ├── 108.jpg
│ ├── 109.jpg
│ ├── 11.jpg
│ ├── 110.jpg
│ ├── 111.jpg
│ ├── 112.jpg
│ ├── 113.jpg
│ ├── 114.jpg
│ ├── 115.jpg
│ ├── 116.jpg
│ ├── 117.jpg
│ ├── 118.jpg
│ ├── 119.jpg
│ ├── 12.jpg
│ ├── 120.jpg
│ ├── 121.jpg
│ ├── 122.jpg
│ ├── 13.jpg
│ ├── 14.jpg
│ ├── 15.jpg
│ ├── 16.jpg
│ ├── 17.jpg
│ ├── 18.jpg
│ ├── 19.jpg
│ ├── 2.jpg
│ ├── 20.jpg
│ ├── 21.jpg
│ ├── 22.jpg
│ ├── 23.jpg
│ ├── 24.jpg
│ ├── 25.jpg
│ ├── 26.jpg
│ ├── 27.jpg
│ ├── 28.jpg
│ ├── 29.jpg
│ ├── 3.jpg
│ ├── 30.jpg
│ ├── 31.jpg
│ ├── 32.jpg
│ ├── 33.jpg
│ ├── 34.jpg
│ ├── 35.jpg
│ ├── 36.jpg
│ ├── 37.jpg
│ ├── 38.jpg
│ ├── 39.jpg
│ ├── 4.jpg
│ ├── 40.jpg
│ ├── 41.jpg
│ ├── 42.jpg
│ ├── 43.jpg
│ ├── 44.jpg
│ ├── 45.jpg
│ ├── 46.jpg
│ ├── 47.jpg
│ ├── 48.jpg
│ ├── 49.jpg
│ ├── 5.jpg
│ ├── 50.jpg
│ ├── 51.jpg
│ ├── 52.jpg
│ ├── 53.jpg
│ ├── 54.jpg
│ ├── 55.jpg
│ ├── 56.jpg
│ ├── 57.jpg
│ ├── 58.jpg
│ ├── 59.jpg
│ ├── 6.jpg
│ ├── 60.jpg
│ ├── 61.jpg
│ ├── 62.jpg
│ ├── 63.jpg
│ ├── 64.jpg
│ ├── 65.jpg
│ ├── 66.jpg
│ ├── 67.jpg
│ ├── 68.jpg
│ ├── 69.jpg
│ ├── 7.jpg
│ ├── 70.jpg
│ ├── 71.jpg
│ ├── 72.jpg
│ ├── 73.jpg
│ ├── 74.jpg
│ ├── 75.jpg
│ ├── 76.jpg
│ ├── 77.jpg
│ ├── 78.jpg
│ ├── 79.jpg
│ ├── 8.jpg
│ ├── 80.jpg
│ ├── 81.jpg
│ ├── 82.jpg
│ ├── 83.jpg
│ ├── 84.jpg
│ ├── 85.jpg
│ ├── 86.jpg
│ ├── 87.jpg
│ ├── 88.jpg
│ ├── 89.jpg
│ ├── 9.jpg
│ ├── 90.jpg
│ ├── 91.jpg
│ ├── 92.jpg
│ ├── 93.jpg
│ ├── 94.jpg
│ ├── 95.jpg
│ ├── 96.jpg
│ ├── 97.jpg
│ ├── 98.jpg
│ └── 99.jpg
├── favicon.ico
├── footer
│ ├── searchAuthor.jpg
│ ├── searchBook.jpg
│ └── searchCategory.jpg
├── index.html
├── logo192.png
├── logo512.png
├── manifest.json
└── robots.txt
└── src
├── App.css
├── App.js
├── App.test.js
├── adminpages
├── authors
│ ├── AddAuthor.js
│ └── ListAuthor.js
├── books
│ ├── AddBook.js
│ ├── AddBookHtml.js
│ ├── AddBookValidation.js
│ └── ListBook.js
└── categories
│ ├── AddCategory.js
│ ├── ListCategory.js
│ └── UpdateCategory.js
├── components
├── adminAppbar
│ └── AdminAppbar.js
├── author
│ ├── AuthorCard.js
│ └── AuthorCardList.js
├── authorList
│ └── AuthorList.js
├── banner
│ ├── index.js
│ └── styles.js
├── book
│ ├── BookCard.js
│ └── BookCardList.js
├── category
│ ├── CategoryCard.js
│ └── CategoryCardList.js
├── fab
│ └── SimpleFab.js
├── footer
│ └── index.js
├── links
│ └── TopLink.js
├── slider
│ ├── index.js
│ └── style.js
├── snackBar
│ └── SimpleSnackbar.js
└── theme
│ ├── CustomThemeProvider.js
│ ├── ThemeMenu.js
│ └── index.js
├── context
└── AppContext.js
├── data.js
├── index.css
├── index.js
├── logo.svg
├── pages
├── author
│ └── AuthorList.js
├── book
│ └── BookList.js
├── category
│ └── CategoryList.js
├── home
│ ├── Home.js
│ └── style.js
└── login
│ └── Login.js
├── reportWebVitals.js
├── services
├── AuthService.js
├── AuthorService.js
├── BookService.js
└── CategoryService.js
├── setupTests.js
└── store
├── actions
├── authActions.js
├── authorActions.js
├── bookActions.js
├── categoryActions.js
└── settingActions.js
├── configureStore.js
├── initialValues
├── authItems.js
├── authorItems.js
├── bookItems.js
├── categoryItems.js
└── settingItems.js
├── reducers
├── authReducer.js
├── authorReducer.js
├── bookReducer.js
├── categoryReducer.js
└── settingReducer.js
└── rootReducer.js
/.gitignore:
--------------------------------------------------------------------------------
1 | day-01/JSIntro/node_modules
2 | day-02/employee-frontend/node_modules
3 | day-05/employee-mui/node_modules
4 | */node_modules
--------------------------------------------------------------------------------
/day-02/employee-frontend/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-02/employee-frontend/public/favicon.ico
--------------------------------------------------------------------------------
/day-02/employee-frontend/public/images/1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-02/employee-frontend/public/images/1.jpg
--------------------------------------------------------------------------------
/day-02/employee-frontend/public/images/10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-02/employee-frontend/public/images/10.jpg
--------------------------------------------------------------------------------
/day-02/employee-frontend/public/images/11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-02/employee-frontend/public/images/11.jpg
--------------------------------------------------------------------------------
/day-02/employee-frontend/public/images/12.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-02/employee-frontend/public/images/12.jpg
--------------------------------------------------------------------------------
/day-02/employee-frontend/public/images/13.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-02/employee-frontend/public/images/13.jpg
--------------------------------------------------------------------------------
/day-02/employee-frontend/public/images/14.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-02/employee-frontend/public/images/14.jpg
--------------------------------------------------------------------------------
/day-02/employee-frontend/public/images/15.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-02/employee-frontend/public/images/15.jpg
--------------------------------------------------------------------------------
/day-02/employee-frontend/public/images/16.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-02/employee-frontend/public/images/16.jpg
--------------------------------------------------------------------------------
/day-02/employee-frontend/public/images/17.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-02/employee-frontend/public/images/17.jpg
--------------------------------------------------------------------------------
/day-02/employee-frontend/public/images/18.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-02/employee-frontend/public/images/18.jpg
--------------------------------------------------------------------------------
/day-02/employee-frontend/public/images/19.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-02/employee-frontend/public/images/19.jpg
--------------------------------------------------------------------------------
/day-02/employee-frontend/public/images/2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-02/employee-frontend/public/images/2.jpg
--------------------------------------------------------------------------------
/day-02/employee-frontend/public/images/20.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-02/employee-frontend/public/images/20.jpg
--------------------------------------------------------------------------------
/day-02/employee-frontend/public/images/21.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-02/employee-frontend/public/images/21.jpg
--------------------------------------------------------------------------------
/day-02/employee-frontend/public/images/3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-02/employee-frontend/public/images/3.jpg
--------------------------------------------------------------------------------
/day-02/employee-frontend/public/images/4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-02/employee-frontend/public/images/4.jpg
--------------------------------------------------------------------------------
/day-02/employee-frontend/public/images/5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-02/employee-frontend/public/images/5.jpg
--------------------------------------------------------------------------------
/day-02/employee-frontend/public/images/6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-02/employee-frontend/public/images/6.jpg
--------------------------------------------------------------------------------
/day-02/employee-frontend/public/images/7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-02/employee-frontend/public/images/7.jpg
--------------------------------------------------------------------------------
/day-02/employee-frontend/public/images/8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-02/employee-frontend/public/images/8.jpg
--------------------------------------------------------------------------------
/day-02/employee-frontend/public/images/9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-02/employee-frontend/public/images/9.jpg
--------------------------------------------------------------------------------
/day-02/employee-frontend/public/logo192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-02/employee-frontend/public/logo192.png
--------------------------------------------------------------------------------
/day-02/employee-frontend/public/logo512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-02/employee-frontend/public/logo512.png
--------------------------------------------------------------------------------
/day-02/employee-frontend/public/robots.txt:
--------------------------------------------------------------------------------
1 | # https://www.robotstxt.org/robotstxt.html
2 | User-agent: *
3 | Disallow:
4 |
--------------------------------------------------------------------------------
/day-02/employee/.mvn/wrapper/maven-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-02/employee/.mvn/wrapper/maven-wrapper.jar
--------------------------------------------------------------------------------
/day-02/employee/bin/.mvn/wrapper/maven-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-02/employee/bin/.mvn/wrapper/maven-wrapper.jar
--------------------------------------------------------------------------------
/day-02/employee/bin/src/main/resources/application.properties:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/day-02/employee/src/main/resources/application.properties:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/day-03/employee-api/.mvn/wrapper/maven-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-03/employee-api/.mvn/wrapper/maven-wrapper.jar
--------------------------------------------------------------------------------
/day-03/employee-api/src/main/resources/application.properties:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/day-04/Readme.md:
--------------------------------------------------------------------------------
1 | # API Documentation
2 | [employee-api documentation](https://documenter.getpostman.com/view/16879698/UzR1K36y)
--------------------------------------------------------------------------------
/day-04/employee-api/.mvn/wrapper/maven-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-04/employee-api/.mvn/wrapper/maven-wrapper.jar
--------------------------------------------------------------------------------
/day-04/employee-api/src/main/resources/application.properties:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/day-04/promise/.gitignore:
--------------------------------------------------------------------------------
1 | /node_modules
2 | */node_modules
--------------------------------------------------------------------------------
/day-05/employee-api/.mvn/wrapper/maven-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-05/employee-api/.mvn/wrapper/maven-wrapper.jar
--------------------------------------------------------------------------------
/day-05/employee-api/src/main/resources/application.properties:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/day-05/employee-mui/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-05/employee-mui/public/favicon.ico
--------------------------------------------------------------------------------
/day-05/employee-mui/public/images/1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-05/employee-mui/public/images/1.jpg
--------------------------------------------------------------------------------
/day-05/employee-mui/public/images/10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-05/employee-mui/public/images/10.jpg
--------------------------------------------------------------------------------
/day-05/employee-mui/public/images/11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-05/employee-mui/public/images/11.jpg
--------------------------------------------------------------------------------
/day-05/employee-mui/public/images/12.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-05/employee-mui/public/images/12.jpg
--------------------------------------------------------------------------------
/day-05/employee-mui/public/images/13.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-05/employee-mui/public/images/13.jpg
--------------------------------------------------------------------------------
/day-05/employee-mui/public/images/14.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-05/employee-mui/public/images/14.jpg
--------------------------------------------------------------------------------
/day-05/employee-mui/public/images/15.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-05/employee-mui/public/images/15.jpg
--------------------------------------------------------------------------------
/day-05/employee-mui/public/images/16.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-05/employee-mui/public/images/16.jpg
--------------------------------------------------------------------------------
/day-05/employee-mui/public/images/17.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-05/employee-mui/public/images/17.jpg
--------------------------------------------------------------------------------
/day-05/employee-mui/public/images/18.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-05/employee-mui/public/images/18.jpg
--------------------------------------------------------------------------------
/day-05/employee-mui/public/images/19.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-05/employee-mui/public/images/19.jpg
--------------------------------------------------------------------------------
/day-05/employee-mui/public/images/2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-05/employee-mui/public/images/2.jpg
--------------------------------------------------------------------------------
/day-05/employee-mui/public/images/20.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-05/employee-mui/public/images/20.jpg
--------------------------------------------------------------------------------
/day-05/employee-mui/public/images/21.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-05/employee-mui/public/images/21.jpg
--------------------------------------------------------------------------------
/day-05/employee-mui/public/images/3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-05/employee-mui/public/images/3.jpg
--------------------------------------------------------------------------------
/day-05/employee-mui/public/images/4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-05/employee-mui/public/images/4.jpg
--------------------------------------------------------------------------------
/day-05/employee-mui/public/images/5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-05/employee-mui/public/images/5.jpg
--------------------------------------------------------------------------------
/day-05/employee-mui/public/images/6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-05/employee-mui/public/images/6.jpg
--------------------------------------------------------------------------------
/day-05/employee-mui/public/images/7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-05/employee-mui/public/images/7.jpg
--------------------------------------------------------------------------------
/day-05/employee-mui/public/images/8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-05/employee-mui/public/images/8.jpg
--------------------------------------------------------------------------------
/day-05/employee-mui/public/images/9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-05/employee-mui/public/images/9.jpg
--------------------------------------------------------------------------------
/day-05/employee-mui/public/logo192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-05/employee-mui/public/logo192.png
--------------------------------------------------------------------------------
/day-05/employee-mui/public/logo512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-05/employee-mui/public/logo512.png
--------------------------------------------------------------------------------
/day-05/employee-mui/public/robots.txt:
--------------------------------------------------------------------------------
1 | # https://www.robotstxt.org/robotstxt.html
2 | User-agent: *
3 | Disallow:
4 |
--------------------------------------------------------------------------------
/day-06/api/.mvn/wrapper/maven-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-06/api/.mvn/wrapper/maven-wrapper.jar
--------------------------------------------------------------------------------
/day-06/api/src/main/resources/application.properties:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/day-06/builderDesignPattern/bin/App.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-06/builderDesignPattern/bin/App.class
--------------------------------------------------------------------------------
/day-06/builderDesignPattern/bin/User.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-06/builderDesignPattern/bin/User.class
--------------------------------------------------------------------------------
/day-07/api/.mvn/wrapper/maven-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-07/api/.mvn/wrapper/maven-wrapper.jar
--------------------------------------------------------------------------------
/day-07/api/src/main/resources/application.properties:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/day-08/api/.mvn/wrapper/maven-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-08/api/.mvn/wrapper/maven-wrapper.jar
--------------------------------------------------------------------------------
/day-09/api/.mvn/wrapper/maven-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-09/api/.mvn/wrapper/maven-wrapper.jar
--------------------------------------------------------------------------------
/day-09/bs-store/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-09/bs-store/public/favicon.ico
--------------------------------------------------------------------------------
/day-09/bs-store/public/logo192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-09/bs-store/public/logo192.png
--------------------------------------------------------------------------------
/day-09/bs-store/public/logo512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-09/bs-store/public/logo512.png
--------------------------------------------------------------------------------
/day-09/bs-store/public/robots.txt:
--------------------------------------------------------------------------------
1 | # https://www.robotstxt.org/robotstxt.html
2 | User-agent: *
3 | Disallow:
4 |
--------------------------------------------------------------------------------
/day-09/bs-store/src/adminpages/books/ListBook.js:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 |
3 | export default function ListBook() {
4 | return (
5 |
Book List
6 | )
7 | }
8 |
--------------------------------------------------------------------------------
/day-09/bs-store/src/adminpages/categories/ListCategory.js:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 |
3 | export default function ListCategory() {
4 | return (
5 | ListCategory
6 | )
7 | }
8 |
--------------------------------------------------------------------------------
/day-10/api/.mvn/wrapper/maven-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-10/api/.mvn/wrapper/maven-wrapper.jar
--------------------------------------------------------------------------------
/day-10/api/bin/.mvn/wrapper/maven-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-10/api/bin/.mvn/wrapper/maven-wrapper.jar
--------------------------------------------------------------------------------
/day-10/bs-store/.env:
--------------------------------------------------------------------------------
1 | REACT_APP_BASE_ENDPOINT = http://localhost:8080/api/v1
--------------------------------------------------------------------------------
/day-10/bs-store/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-10/bs-store/public/favicon.ico
--------------------------------------------------------------------------------
/day-10/bs-store/public/logo192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-10/bs-store/public/logo192.png
--------------------------------------------------------------------------------
/day-10/bs-store/public/logo512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-10/bs-store/public/logo512.png
--------------------------------------------------------------------------------
/day-10/bs-store/public/robots.txt:
--------------------------------------------------------------------------------
1 | # https://www.robotstxt.org/robotstxt.html
2 | User-agent: *
3 | Disallow:
4 |
--------------------------------------------------------------------------------
/day-10/bs-store/src/adminpages/books/ListBook.js:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 |
3 | export default function ListBook() {
4 | return (
5 | Book List
6 | )
7 | }
8 |
--------------------------------------------------------------------------------
/day-10/bs-store/src/adminpages/categories/ListCategory.js:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 |
3 | export default function ListCategory() {
4 | return (
5 | ListCategory
6 | )
7 | }
8 |
--------------------------------------------------------------------------------
/day-11/Readme.md:
--------------------------------------------------------------------------------
1 | # 11. Gün
2 | - Redux
3 | - Actions
4 | - Reducers
5 | - React-Redux
6 | - useSelector
7 | - useDispatch
8 | - Redux-DevTools-Extension
9 | - Redux-Thunk
--------------------------------------------------------------------------------
/day-11/api/.mvn/wrapper/maven-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-11/api/.mvn/wrapper/maven-wrapper.jar
--------------------------------------------------------------------------------
/day-11/api/bin/.mvn/wrapper/maven-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-11/api/bin/.mvn/wrapper/maven-wrapper.jar
--------------------------------------------------------------------------------
/day-11/bs-store/.env:
--------------------------------------------------------------------------------
1 | REACT_APP_BASE_ENDPOINT = http://localhost:8080/api/v1
2 |
3 |
--------------------------------------------------------------------------------
/day-11/bs-store/.vscode/settings.json:
--------------------------------------------------------------------------------
1 | {
2 | "editor.fontSize": 22
3 | }
--------------------------------------------------------------------------------
/day-11/bs-store/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-11/bs-store/public/favicon.ico
--------------------------------------------------------------------------------
/day-11/bs-store/public/logo192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-11/bs-store/public/logo192.png
--------------------------------------------------------------------------------
/day-11/bs-store/public/logo512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-11/bs-store/public/logo512.png
--------------------------------------------------------------------------------
/day-11/bs-store/public/robots.txt:
--------------------------------------------------------------------------------
1 | # https://www.robotstxt.org/robotstxt.html
2 | User-agent: *
3 | Disallow:
4 |
--------------------------------------------------------------------------------
/day-11/bs-store/src/store/initialValues/categoryItems.js:
--------------------------------------------------------------------------------
1 | export const categories = [];
2 | export const category = {};
--------------------------------------------------------------------------------
/day-11/bs-store/src/store/initialValues/settingItems.js:
--------------------------------------------------------------------------------
1 | export const theme = 'theme1'
2 | export const pageSize = 25;
3 | export const message = "Hello...";
4 | export const showSnackbar = false;
--------------------------------------------------------------------------------
/day-12/api/.mvn/wrapper/maven-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/api/.mvn/wrapper/maven-wrapper.jar
--------------------------------------------------------------------------------
/day-12/api/bin/.mvn/wrapper/maven-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/api/bin/.mvn/wrapper/maven-wrapper.jar
--------------------------------------------------------------------------------
/day-12/bs-store/.env:
--------------------------------------------------------------------------------
1 | REACT_APP_BASE_ENDPOINT = http://localhost:8080/api/v1
2 |
3 |
--------------------------------------------------------------------------------
/day-12/bs-store/.vscode/settings.json:
--------------------------------------------------------------------------------
1 | {
2 | "editor.fontSize": 22
3 | }
--------------------------------------------------------------------------------
/day-12/bs-store/public/authors/1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/authors/1.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/authors/10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/authors/10.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/authors/11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/authors/11.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/authors/12.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/authors/12.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/authors/13.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/authors/13.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/authors/14.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/authors/14.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/authors/15.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/authors/15.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/authors/16.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/authors/16.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/authors/17.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/authors/17.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/authors/18.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/authors/18.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/authors/19.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/authors/19.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/authors/2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/authors/2.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/authors/20.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/authors/20.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/authors/21.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/authors/21.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/authors/3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/authors/3.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/authors/4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/authors/4.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/authors/5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/authors/5.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/authors/6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/authors/6.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/authors/7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/authors/7.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/authors/8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/authors/8.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/authors/9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/authors/9.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/1.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/10.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/100.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/100.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/101.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/101.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/102.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/102.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/103.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/103.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/104.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/104.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/105.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/105.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/106.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/106.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/107.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/107.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/108.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/108.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/109.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/109.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/11.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/110.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/110.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/111.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/111.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/112.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/112.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/113.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/113.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/114.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/114.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/115.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/115.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/116.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/116.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/117.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/117.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/118.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/118.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/119.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/119.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/12.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/12.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/120.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/120.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/121.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/121.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/122.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/122.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/13.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/13.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/14.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/14.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/15.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/15.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/16.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/16.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/17.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/17.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/18.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/18.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/19.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/19.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/2.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/20.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/20.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/21.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/21.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/22.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/22.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/23.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/23.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/24.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/24.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/25.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/25.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/26.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/26.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/27.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/27.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/28.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/28.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/29.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/29.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/3.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/30.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/30.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/31.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/31.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/32.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/32.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/33.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/33.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/34.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/34.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/35.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/35.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/36.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/36.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/37.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/37.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/38.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/38.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/39.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/39.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/4.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/40.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/40.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/41.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/41.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/42.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/42.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/43.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/43.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/44.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/44.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/45.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/45.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/46.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/46.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/47.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/47.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/48.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/48.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/49.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/49.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/5.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/50.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/50.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/51.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/51.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/52.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/52.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/53.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/53.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/54.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/54.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/55.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/55.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/56.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/56.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/57.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/57.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/58.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/58.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/59.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/59.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/6.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/60.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/60.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/61.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/61.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/62.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/62.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/63.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/63.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/64.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/64.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/65.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/65.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/66.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/66.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/67.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/67.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/68.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/68.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/69.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/69.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/7.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/70.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/70.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/71.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/71.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/72.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/72.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/73.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/73.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/74.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/74.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/75.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/75.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/76.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/76.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/77.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/77.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/78.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/78.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/79.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/79.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/8.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/80.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/80.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/81.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/81.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/82.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/82.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/83.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/83.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/84.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/84.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/85.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/85.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/86.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/86.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/87.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/87.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/88.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/88.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/89.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/89.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/9.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/90.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/90.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/91.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/91.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/92.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/92.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/93.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/93.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/94.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/94.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/95.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/95.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/96.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/96.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/97.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/97.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/98.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/98.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/books/99.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/books/99.jpg
--------------------------------------------------------------------------------
/day-12/bs-store/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/favicon.ico
--------------------------------------------------------------------------------
/day-12/bs-store/public/logo192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/logo192.png
--------------------------------------------------------------------------------
/day-12/bs-store/public/logo512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-12/bs-store/public/logo512.png
--------------------------------------------------------------------------------
/day-12/bs-store/public/robots.txt:
--------------------------------------------------------------------------------
1 | # https://www.robotstxt.org/robotstxt.html
2 | User-agent: *
3 | Disallow:
4 |
--------------------------------------------------------------------------------
/day-12/bs-store/src/store/initialValues/authorItems.js:
--------------------------------------------------------------------------------
1 | export const authors = [];
2 | export const author = {};
--------------------------------------------------------------------------------
/day-12/bs-store/src/store/initialValues/bookItems.js:
--------------------------------------------------------------------------------
1 | export const books = [];
--------------------------------------------------------------------------------
/day-12/bs-store/src/store/initialValues/categoryItems.js:
--------------------------------------------------------------------------------
1 | export const categories = [];
2 | export const category = {};
--------------------------------------------------------------------------------
/day-13/api/.mvn/wrapper/maven-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/api/.mvn/wrapper/maven-wrapper.jar
--------------------------------------------------------------------------------
/day-13/api/bin/.mvn/wrapper/maven-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/api/bin/.mvn/wrapper/maven-wrapper.jar
--------------------------------------------------------------------------------
/day-13/api/src/main/java/com/bookstore/api/services/Abstract/UserService.java:
--------------------------------------------------------------------------------
1 | package com.bookstore.api.services.Abstract;
2 |
3 | public interface UserService extends ApplicationUserDao {
4 |
5 | }
6 |
--------------------------------------------------------------------------------
/day-13/bs-store/.env:
--------------------------------------------------------------------------------
1 | REACT_APP_BASE_ENDPOINT = http://localhost:8080/api/v1
2 |
3 |
--------------------------------------------------------------------------------
/day-13/bs-store/.vscode/settings.json:
--------------------------------------------------------------------------------
1 | {
2 | "editor.fontSize": 22
3 | }
--------------------------------------------------------------------------------
/day-13/bs-store/public/authors/1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/authors/1.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/authors/10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/authors/10.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/authors/11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/authors/11.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/authors/12.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/authors/12.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/authors/13.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/authors/13.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/authors/14.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/authors/14.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/authors/15.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/authors/15.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/authors/16.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/authors/16.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/authors/17.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/authors/17.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/authors/18.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/authors/18.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/authors/19.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/authors/19.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/authors/2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/authors/2.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/authors/20.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/authors/20.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/authors/21.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/authors/21.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/authors/3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/authors/3.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/authors/4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/authors/4.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/authors/5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/authors/5.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/authors/6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/authors/6.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/authors/7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/authors/7.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/authors/8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/authors/8.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/authors/9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/authors/9.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/1.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/10.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/100.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/100.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/101.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/101.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/102.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/102.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/103.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/103.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/104.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/104.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/105.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/105.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/106.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/106.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/107.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/107.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/108.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/108.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/109.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/109.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/11.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/110.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/110.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/111.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/111.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/112.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/112.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/113.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/113.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/114.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/114.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/115.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/115.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/116.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/116.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/117.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/117.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/118.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/118.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/119.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/119.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/12.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/12.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/120.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/120.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/121.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/121.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/122.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/122.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/13.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/13.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/14.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/14.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/15.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/15.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/16.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/16.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/17.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/17.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/18.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/18.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/19.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/19.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/2.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/20.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/20.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/21.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/21.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/22.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/22.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/23.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/23.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/24.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/24.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/25.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/25.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/26.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/26.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/27.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/27.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/28.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/28.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/29.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/29.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/3.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/30.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/30.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/31.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/31.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/32.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/32.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/33.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/33.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/34.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/34.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/35.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/35.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/36.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/36.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/37.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/37.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/38.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/38.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/39.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/39.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/4.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/40.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/40.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/41.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/41.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/42.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/42.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/43.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/43.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/44.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/44.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/45.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/45.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/46.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/46.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/47.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/47.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/48.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/48.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/49.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/49.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/5.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/50.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/50.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/51.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/51.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/52.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/52.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/53.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/53.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/54.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/54.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/55.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/55.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/56.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/56.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/57.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/57.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/58.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/58.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/59.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/59.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/6.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/60.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/60.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/61.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/61.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/62.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/62.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/63.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/63.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/64.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/64.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/65.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/65.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/66.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/66.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/67.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/67.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/68.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/68.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/69.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/69.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/7.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/70.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/70.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/71.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/71.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/72.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/72.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/73.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/73.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/74.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/74.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/75.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/75.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/76.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/76.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/77.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/77.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/78.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/78.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/79.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/79.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/8.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/80.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/80.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/81.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/81.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/82.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/82.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/83.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/83.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/84.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/84.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/85.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/85.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/86.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/86.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/87.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/87.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/88.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/88.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/89.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/89.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/9.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/90.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/90.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/91.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/91.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/92.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/92.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/93.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/93.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/94.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/94.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/95.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/95.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/96.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/96.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/97.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/97.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/98.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/98.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/books/99.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/books/99.jpg
--------------------------------------------------------------------------------
/day-13/bs-store/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/favicon.ico
--------------------------------------------------------------------------------
/day-13/bs-store/public/logo192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/logo192.png
--------------------------------------------------------------------------------
/day-13/bs-store/public/logo512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-13/bs-store/public/logo512.png
--------------------------------------------------------------------------------
/day-13/bs-store/public/robots.txt:
--------------------------------------------------------------------------------
1 | # https://www.robotstxt.org/robotstxt.html
2 | User-agent: *
3 | Disallow:
4 |
--------------------------------------------------------------------------------
/day-13/bs-store/src/store/initialValues/authorItems.js:
--------------------------------------------------------------------------------
1 | export const authors = [];
2 | export const author = {};
--------------------------------------------------------------------------------
/day-13/bs-store/src/store/initialValues/bookItems.js:
--------------------------------------------------------------------------------
1 | export const books = [];
--------------------------------------------------------------------------------
/day-13/bs-store/src/store/initialValues/categoryItems.js:
--------------------------------------------------------------------------------
1 | export const categories = [];
2 | export const category = {};
--------------------------------------------------------------------------------
/day-14/api/.mvn/wrapper/maven-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/api/.mvn/wrapper/maven-wrapper.jar
--------------------------------------------------------------------------------
/day-14/api/Readme.md:
--------------------------------------------------------------------------------
1 | # 14. Gün
2 | - Json Web Token
3 | - STATELESS
--------------------------------------------------------------------------------
/day-14/api/bin/.mvn/wrapper/maven-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/api/bin/.mvn/wrapper/maven-wrapper.jar
--------------------------------------------------------------------------------
/day-14/bs-store/.env:
--------------------------------------------------------------------------------
1 | REACT_APP_BASE_ENDPOINT = http://localhost:8080/api/v1
2 |
3 |
--------------------------------------------------------------------------------
/day-14/bs-store/.vscode/settings.json:
--------------------------------------------------------------------------------
1 | {
2 | "editor.fontSize": 22
3 | }
--------------------------------------------------------------------------------
/day-14/bs-store/public/authors/1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/authors/1.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/authors/10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/authors/10.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/authors/11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/authors/11.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/authors/12.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/authors/12.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/authors/13.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/authors/13.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/authors/14.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/authors/14.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/authors/15.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/authors/15.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/authors/16.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/authors/16.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/authors/17.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/authors/17.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/authors/18.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/authors/18.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/authors/19.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/authors/19.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/authors/2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/authors/2.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/authors/20.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/authors/20.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/authors/21.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/authors/21.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/authors/3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/authors/3.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/authors/4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/authors/4.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/authors/5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/authors/5.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/authors/6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/authors/6.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/authors/7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/authors/7.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/authors/8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/authors/8.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/authors/9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/authors/9.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/1.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/10.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/100.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/100.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/101.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/101.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/102.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/102.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/103.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/103.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/104.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/104.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/105.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/105.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/106.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/106.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/107.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/107.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/108.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/108.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/109.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/109.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/11.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/110.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/110.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/111.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/111.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/112.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/112.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/113.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/113.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/114.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/114.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/115.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/115.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/116.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/116.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/117.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/117.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/118.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/118.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/119.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/119.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/12.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/12.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/120.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/120.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/121.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/121.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/122.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/122.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/13.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/13.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/14.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/14.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/15.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/15.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/16.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/16.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/17.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/17.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/18.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/18.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/19.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/19.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/2.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/20.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/20.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/21.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/21.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/22.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/22.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/23.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/23.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/24.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/24.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/25.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/25.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/26.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/26.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/27.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/27.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/28.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/28.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/29.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/29.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/3.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/30.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/30.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/31.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/31.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/32.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/32.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/33.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/33.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/34.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/34.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/35.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/35.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/36.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/36.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/37.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/37.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/38.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/38.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/39.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/39.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/4.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/40.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/40.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/41.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/41.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/42.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/42.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/43.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/43.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/44.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/44.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/45.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/45.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/46.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/46.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/47.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/47.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/48.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/48.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/49.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/49.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/5.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/50.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/50.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/51.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/51.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/52.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/52.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/53.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/53.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/54.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/54.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/55.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/55.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/56.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/56.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/57.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/57.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/58.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/58.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/59.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/59.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/6.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/60.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/60.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/61.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/61.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/62.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/62.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/63.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/63.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/64.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/64.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/65.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/65.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/66.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/66.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/67.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/67.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/68.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/68.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/69.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/69.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/7.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/70.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/70.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/71.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/71.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/72.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/72.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/73.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/73.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/74.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/74.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/75.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/75.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/76.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/76.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/77.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/77.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/78.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/78.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/79.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/79.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/8.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/80.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/80.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/81.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/81.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/82.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/82.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/83.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/83.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/84.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/84.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/85.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/85.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/86.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/86.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/87.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/87.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/88.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/88.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/89.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/89.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/9.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/90.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/90.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/91.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/91.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/92.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/92.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/93.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/93.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/94.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/94.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/95.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/95.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/96.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/96.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/97.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/97.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/98.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/98.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/books/99.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/books/99.jpg
--------------------------------------------------------------------------------
/day-14/bs-store/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/favicon.ico
--------------------------------------------------------------------------------
/day-14/bs-store/public/logo192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/logo192.png
--------------------------------------------------------------------------------
/day-14/bs-store/public/logo512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-14/bs-store/public/logo512.png
--------------------------------------------------------------------------------
/day-14/bs-store/public/robots.txt:
--------------------------------------------------------------------------------
1 | # https://www.robotstxt.org/robotstxt.html
2 | User-agent: *
3 | Disallow:
4 |
--------------------------------------------------------------------------------
/day-14/bs-store/src/store/initialValues/authorItems.js:
--------------------------------------------------------------------------------
1 | export const authors = [];
2 | export const author = {};
--------------------------------------------------------------------------------
/day-14/bs-store/src/store/initialValues/bookItems.js:
--------------------------------------------------------------------------------
1 | export const books = [];
--------------------------------------------------------------------------------
/day-14/bs-store/src/store/initialValues/categoryItems.js:
--------------------------------------------------------------------------------
1 | export const categories = [];
2 | export const category = {};
--------------------------------------------------------------------------------
/day-15/api-calls/node_modules/axios/SECURITY.md:
--------------------------------------------------------------------------------
1 | # Security Policy
2 |
3 | ## Reporting a Vulnerability
4 |
5 | Please report security issues to jasonsaayman@gmail.com
6 |
--------------------------------------------------------------------------------
/day-15/api-calls/node_modules/axios/index.js:
--------------------------------------------------------------------------------
1 | module.exports = require('./lib/axios');
--------------------------------------------------------------------------------
/day-15/api-calls/node_modules/axios/lib/cancel/isCancel.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 |
3 | module.exports = function isCancel(value) {
4 | return !!(value && value.__CANCEL__);
5 | };
6 |
--------------------------------------------------------------------------------
/day-15/api-calls/node_modules/axios/lib/defaults/env/FormData.js:
--------------------------------------------------------------------------------
1 | // eslint-disable-next-line strict
2 | module.exports = require('form-data');
3 |
--------------------------------------------------------------------------------
/day-15/api-calls/node_modules/axios/lib/env/README.md:
--------------------------------------------------------------------------------
1 | # axios // env
2 |
3 | The `data.js` file is updated automatically when the package version is upgrading. Please do not edit it manually.
4 |
--------------------------------------------------------------------------------
/day-15/api-calls/node_modules/axios/lib/env/data.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | "version": "0.27.2"
3 | };
--------------------------------------------------------------------------------
/day-15/api-calls/node_modules/axios/lib/helpers/null.js:
--------------------------------------------------------------------------------
1 | // eslint-disable-next-line strict
2 | module.exports = null;
3 |
--------------------------------------------------------------------------------
/day-15/api-calls/node_modules/axios/tslint.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "dtslint/dtslint.json",
3 | "rules": {
4 | "no-unnecessary-generics": false
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/day-15/api-calls/node_modules/delayed-stream/.npmignore:
--------------------------------------------------------------------------------
1 | test
2 |
--------------------------------------------------------------------------------
/day-15/api-calls/node_modules/delayed-stream/Makefile:
--------------------------------------------------------------------------------
1 | SHELL := /bin/bash
2 |
3 | test:
4 | @./test/run.js
5 |
6 | .PHONY: test
7 |
8 |
--------------------------------------------------------------------------------
/day-15/api-calls/node_modules/follow-redirects/http.js:
--------------------------------------------------------------------------------
1 | module.exports = require("./").http;
2 |
--------------------------------------------------------------------------------
/day-15/api-calls/node_modules/follow-redirects/https.js:
--------------------------------------------------------------------------------
1 | module.exports = require("./").https;
2 |
--------------------------------------------------------------------------------
/day-15/api-calls/node_modules/form-data/lib/browser.js:
--------------------------------------------------------------------------------
1 | /* eslint-env browser */
2 | module.exports = typeof self == 'object' ? self.FormData : window.FormData;
3 |
--------------------------------------------------------------------------------
/day-15/api/.mvn/wrapper/maven-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/api/.mvn/wrapper/maven-wrapper.jar
--------------------------------------------------------------------------------
/day-15/api/Readme.md:
--------------------------------------------------------------------------------
1 | # 14. Gün
2 | - Json Web Token
3 | - STATELESS
--------------------------------------------------------------------------------
/day-15/api/bin/.mvn/wrapper/maven-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/api/bin/.mvn/wrapper/maven-wrapper.jar
--------------------------------------------------------------------------------
/day-15/bs-store/.env:
--------------------------------------------------------------------------------
1 | REACT_APP_BASE_ENDPOINT = http://localhost:8080/api/v1
2 |
3 |
--------------------------------------------------------------------------------
/day-15/bs-store/.vscode/settings.json:
--------------------------------------------------------------------------------
1 | {
2 | "editor.fontSize": 22
3 | }
--------------------------------------------------------------------------------
/day-15/bs-store/public/authors/1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/authors/1.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/authors/10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/authors/10.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/authors/11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/authors/11.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/authors/12.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/authors/12.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/authors/13.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/authors/13.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/authors/14.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/authors/14.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/authors/15.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/authors/15.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/authors/16.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/authors/16.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/authors/17.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/authors/17.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/authors/18.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/authors/18.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/authors/19.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/authors/19.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/authors/2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/authors/2.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/authors/20.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/authors/20.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/authors/21.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/authors/21.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/authors/3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/authors/3.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/authors/4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/authors/4.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/authors/5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/authors/5.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/authors/6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/authors/6.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/authors/7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/authors/7.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/authors/8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/authors/8.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/authors/9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/authors/9.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/banner/banner.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/banner/banner.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/1.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/10.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/100.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/100.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/101.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/101.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/102.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/102.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/103.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/103.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/104.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/104.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/105.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/105.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/106.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/106.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/107.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/107.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/108.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/108.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/109.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/109.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/11.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/110.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/110.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/111.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/111.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/112.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/112.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/113.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/113.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/114.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/114.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/115.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/115.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/116.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/116.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/117.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/117.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/118.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/118.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/119.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/119.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/12.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/12.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/120.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/120.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/121.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/121.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/122.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/122.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/13.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/13.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/14.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/14.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/15.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/15.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/16.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/16.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/17.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/17.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/18.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/18.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/19.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/19.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/2.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/20.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/20.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/21.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/21.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/22.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/22.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/23.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/23.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/24.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/24.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/25.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/25.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/26.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/26.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/27.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/27.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/28.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/28.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/29.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/29.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/3.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/30.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/30.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/31.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/31.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/32.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/32.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/33.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/33.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/34.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/34.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/35.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/35.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/36.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/36.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/37.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/37.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/38.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/38.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/39.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/39.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/4.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/40.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/40.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/41.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/41.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/42.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/42.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/43.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/43.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/44.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/44.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/45.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/45.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/46.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/46.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/47.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/47.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/48.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/48.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/49.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/49.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/5.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/50.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/50.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/51.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/51.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/52.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/52.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/53.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/53.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/54.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/54.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/55.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/55.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/56.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/56.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/57.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/57.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/58.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/58.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/59.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/59.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/6.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/60.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/60.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/61.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/61.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/62.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/62.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/63.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/63.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/64.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/64.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/65.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/65.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/66.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/66.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/67.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/67.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/68.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/68.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/69.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/69.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/7.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/70.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/70.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/71.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/71.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/72.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/72.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/73.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/73.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/74.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/74.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/75.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/75.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/76.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/76.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/77.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/77.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/78.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/78.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/79.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/79.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/8.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/80.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/80.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/81.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/81.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/82.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/82.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/83.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/83.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/84.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/84.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/85.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/85.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/86.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/86.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/87.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/87.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/88.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/88.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/89.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/89.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/9.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/90.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/90.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/91.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/91.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/92.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/92.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/93.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/93.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/94.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/94.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/95.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/95.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/96.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/96.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/97.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/97.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/98.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/98.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/books/99.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/books/99.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/favicon.ico
--------------------------------------------------------------------------------
/day-15/bs-store/public/footer/searchAuthor.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/footer/searchAuthor.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/footer/searchBook.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/footer/searchBook.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/footer/searchCategory.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/footer/searchCategory.jpg
--------------------------------------------------------------------------------
/day-15/bs-store/public/logo192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/logo192.png
--------------------------------------------------------------------------------
/day-15/bs-store/public/logo512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcomert/java-react-bootcamp/5d4f0c8aa8d419c8a76cc71ce5d09bb7c41f081f/day-15/bs-store/public/logo512.png
--------------------------------------------------------------------------------
/day-15/bs-store/public/robots.txt:
--------------------------------------------------------------------------------
1 | # https://www.robotstxt.org/robotstxt.html
2 | User-agent: *
3 | Disallow:
4 |
--------------------------------------------------------------------------------
/day-15/bs-store/src/store/initialValues/authorItems.js:
--------------------------------------------------------------------------------
1 | export const authors = [];
2 | export const author = {};
--------------------------------------------------------------------------------
/day-15/bs-store/src/store/initialValues/bookItems.js:
--------------------------------------------------------------------------------
1 | export const books = [];
--------------------------------------------------------------------------------
/day-15/bs-store/src/store/initialValues/categoryItems.js:
--------------------------------------------------------------------------------
1 | export const categories = [];
2 | export const category = {};
--------------------------------------------------------------------------------