├── .gitignore ├── LICENSE ├── README.md ├── client ├── .env ├── .eslintcache ├── README.md ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.css │ ├── App.js │ ├── BooksList │ │ ├── BookItem.jsx │ │ ├── BooksList.jsx │ │ └── index.js │ ├── CreateBook │ │ ├── CreateBook.jsx │ │ └── index.js │ ├── UpdateBook │ │ ├── UpdateBook.jsx │ │ └── index.js │ ├── api.js │ ├── index.css │ ├── index.js │ ├── reportWebVitals.js │ ├── setupTests.js │ └── shared │ │ ├── BookForm.jsx │ │ ├── Container.jsx │ │ ├── NavBar.jsx │ │ ├── index.js │ │ └── logo.svg └── yarn.lock └── server ├── db.json ├── package.json ├── routes └── books.js ├── server.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satansdeer/react-query-3/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satansdeer/react-query-3/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satansdeer/react-query-3/HEAD/README.md -------------------------------------------------------------------------------- /client/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_SERVER=http://localhost:4000 -------------------------------------------------------------------------------- /client/.eslintcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satansdeer/react-query-3/HEAD/client/.eslintcache -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satansdeer/react-query-3/HEAD/client/README.md -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satansdeer/react-query-3/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satansdeer/react-query-3/HEAD/client/public/favicon.ico -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satansdeer/react-query-3/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satansdeer/react-query-3/HEAD/client/public/logo192.png -------------------------------------------------------------------------------- /client/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satansdeer/react-query-3/HEAD/client/public/logo512.png -------------------------------------------------------------------------------- /client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satansdeer/react-query-3/HEAD/client/public/manifest.json -------------------------------------------------------------------------------- /client/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satansdeer/react-query-3/HEAD/client/public/robots.txt -------------------------------------------------------------------------------- /client/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satansdeer/react-query-3/HEAD/client/src/App.css -------------------------------------------------------------------------------- /client/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satansdeer/react-query-3/HEAD/client/src/App.js -------------------------------------------------------------------------------- /client/src/BooksList/BookItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satansdeer/react-query-3/HEAD/client/src/BooksList/BookItem.jsx -------------------------------------------------------------------------------- /client/src/BooksList/BooksList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satansdeer/react-query-3/HEAD/client/src/BooksList/BooksList.jsx -------------------------------------------------------------------------------- /client/src/BooksList/index.js: -------------------------------------------------------------------------------- 1 | export * from './BooksList' -------------------------------------------------------------------------------- /client/src/CreateBook/CreateBook.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satansdeer/react-query-3/HEAD/client/src/CreateBook/CreateBook.jsx -------------------------------------------------------------------------------- /client/src/CreateBook/index.js: -------------------------------------------------------------------------------- 1 | export * from "./CreateBook" -------------------------------------------------------------------------------- /client/src/UpdateBook/UpdateBook.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satansdeer/react-query-3/HEAD/client/src/UpdateBook/UpdateBook.jsx -------------------------------------------------------------------------------- /client/src/UpdateBook/index.js: -------------------------------------------------------------------------------- 1 | export * from "./UpdateBook" -------------------------------------------------------------------------------- /client/src/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satansdeer/react-query-3/HEAD/client/src/api.js -------------------------------------------------------------------------------- /client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satansdeer/react-query-3/HEAD/client/src/index.css -------------------------------------------------------------------------------- /client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satansdeer/react-query-3/HEAD/client/src/index.js -------------------------------------------------------------------------------- /client/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satansdeer/react-query-3/HEAD/client/src/reportWebVitals.js -------------------------------------------------------------------------------- /client/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satansdeer/react-query-3/HEAD/client/src/setupTests.js -------------------------------------------------------------------------------- /client/src/shared/BookForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satansdeer/react-query-3/HEAD/client/src/shared/BookForm.jsx -------------------------------------------------------------------------------- /client/src/shared/Container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satansdeer/react-query-3/HEAD/client/src/shared/Container.jsx -------------------------------------------------------------------------------- /client/src/shared/NavBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satansdeer/react-query-3/HEAD/client/src/shared/NavBar.jsx -------------------------------------------------------------------------------- /client/src/shared/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satansdeer/react-query-3/HEAD/client/src/shared/index.js -------------------------------------------------------------------------------- /client/src/shared/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satansdeer/react-query-3/HEAD/client/src/shared/logo.svg -------------------------------------------------------------------------------- /client/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satansdeer/react-query-3/HEAD/client/yarn.lock -------------------------------------------------------------------------------- /server/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satansdeer/react-query-3/HEAD/server/db.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satansdeer/react-query-3/HEAD/server/package.json -------------------------------------------------------------------------------- /server/routes/books.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satansdeer/react-query-3/HEAD/server/routes/books.js -------------------------------------------------------------------------------- /server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satansdeer/react-query-3/HEAD/server/server.js -------------------------------------------------------------------------------- /server/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satansdeer/react-query-3/HEAD/server/yarn.lock --------------------------------------------------------------------------------