├── .gitignore ├── README.md ├── api ├── .eslintrc.js ├── .gitignore ├── package-lock.json ├── package.json └── server.js └── client ├── .gitignore ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── api-mock.json ├── api.js ├── index.css └── index.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisblakely01/react-node-photo-gallery/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisblakely01/react-node-photo-gallery/HEAD/README.md -------------------------------------------------------------------------------- /api/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisblakely01/react-node-photo-gallery/HEAD/api/.eslintrc.js -------------------------------------------------------------------------------- /api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisblakely01/react-node-photo-gallery/HEAD/api/.gitignore -------------------------------------------------------------------------------- /api/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisblakely01/react-node-photo-gallery/HEAD/api/package-lock.json -------------------------------------------------------------------------------- /api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisblakely01/react-node-photo-gallery/HEAD/api/package.json -------------------------------------------------------------------------------- /api/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisblakely01/react-node-photo-gallery/HEAD/api/server.js -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisblakely01/react-node-photo-gallery/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisblakely01/react-node-photo-gallery/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisblakely01/react-node-photo-gallery/HEAD/client/public/favicon.ico -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisblakely01/react-node-photo-gallery/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisblakely01/react-node-photo-gallery/HEAD/client/public/logo192.png -------------------------------------------------------------------------------- /client/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisblakely01/react-node-photo-gallery/HEAD/client/public/logo512.png -------------------------------------------------------------------------------- /client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisblakely01/react-node-photo-gallery/HEAD/client/public/manifest.json -------------------------------------------------------------------------------- /client/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisblakely01/react-node-photo-gallery/HEAD/client/public/robots.txt -------------------------------------------------------------------------------- /client/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisblakely01/react-node-photo-gallery/HEAD/client/src/App.css -------------------------------------------------------------------------------- /client/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisblakely01/react-node-photo-gallery/HEAD/client/src/App.js -------------------------------------------------------------------------------- /client/src/api-mock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisblakely01/react-node-photo-gallery/HEAD/client/src/api-mock.json -------------------------------------------------------------------------------- /client/src/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisblakely01/react-node-photo-gallery/HEAD/client/src/api.js -------------------------------------------------------------------------------- /client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisblakely01/react-node-photo-gallery/HEAD/client/src/index.css -------------------------------------------------------------------------------- /client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisblakely01/react-node-photo-gallery/HEAD/client/src/index.js --------------------------------------------------------------------------------